フィルターのクリア

How do you create multiple symbolic variables?

15 ビュー (過去 30 日間)
Richárd Tóth
Richárd Tóth 2019 年 8 月 2 日
編集済み: madhan ravi 2019 年 8 月 2 日
Here is my code, but is there a simpler solution?
% create symbolic variables x1,...,xn
for i=1:n
eval(join(['syms x' string(i)],''));
end

採用された回答

madhan ravi
madhan ravi 2019 年 8 月 2 日
編集済み: madhan ravi 2019 年 8 月 2 日
n = 4;
X=sym('x',[1,n]);
syms(X)
If you're using 2019a or later:
n = 4;
syms x [1 n]

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeConversion Between Symbolic and Numeric についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by