Add a dynamic amount of symbolic variables into a script
5 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
I am attempting to add a number of symbolic variables dynamically for a script.
The script will get an input from the user about how many joints they are inputting in for some robotic manipulation calculations. Based on this I would like to insert a number of symbolic variables (equal to the amount specified at the initial input).
Is there a way to do this that isn't creating a bunch of variables in storage like:
syms v1 v2 v3 v4 v5 v6 v7 v8 v9 v9 %...
variables = [v1 v2 v3 v4 v5 v6 v7 v8 v9] %...
numvars = input('How many joints would you like to enter: ');
for i=1:numvars
%Do something
end
0 Commenti
Risposta accettata
Più risposte (1)
Vedere anche
Categorie
Scopri di più su Number Theory in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!