Create a matrix with letters
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
I would like to know how to create the following matrix:

When there is a list of points with weights (xi, yi, zi are coordinates and mi are weights) I just don't know how to create it with those letters.
4 comentarios
James Tursa
el 6 de Abr. de 2018
Editada: James Tursa
el 6 de Abr. de 2018
Are you trying to form a symbolic matrix? How is this going to be used downstream in your code?
Respuestas (1)
James Tursa
el 6 de Abr. de 2018
Is this what you want:
A = [sym('m%d',[n 1]) sym('x%d',[n 1]) sym('y%d',[n 1]) sym('z%d',[n 1])]
Ver también
Categorías
Más información sobre Number Theory en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!