Create a matrix with letters
7 次查看(过去 30 天)
显示 更早的评论
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 个评论
James Tursa
2018-4-6
编辑:James Tursa
2018-4-6
Are you trying to form a symbolic matrix? How is this going to be used downstream in your code?
回答(1 个)
James Tursa
2018-4-6
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])]
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Number Theory 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!