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 日間)
pefernan
pefernan 2017 年 4 月 20 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
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]?

回答 (1 件)

Chaitral Date
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]

タグ

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by