How do you create multiple symbolic variables?
18 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Richárd Tóth
am 2 Aug. 2019
Bearbeitet: madhan ravi
am 2 Aug. 2019
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
0 Kommentare
Akzeptierte Antwort
madhan ravi
am 2 Aug. 2019
Bearbeitet: madhan ravi
am 2 Aug. 2019
n = 4;
X=sym('x',[1,n]);
syms(X)
If you're using 2019a or later:
n = 4;
syms x [1 n]
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Symbolic Math Toolbox finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!