Info
此问题已关闭。 请重新打开它进行编辑或回答。
Can't use subs(sym_array,vector) because Matlab assumes I want to replace the first component of sym_array and not the whole array
1 次查看(过去 30 天)
显示 更早的评论
x = sym('x',[1 2 3])
subs(x,[1 2 3])
returns:
[1,2,3,x2,x2,x2,x3,x3,x3]
How do I fix this to return [1,2,3]?
0 个评论
回答(1 个)
Chaitral Date
2017-4-25
See the below code,
syms x x1 x2 x3;
x = sym('x',[1 3]);
x=subs(x,[x1,x2,x3],[1, 2,3]);
This will give you,
x =
[ 1, 2, 3]
0 个评论
此问题已关闭。
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!