Running Functions in For Loop
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
emary
il 1 Lug 2015
Risposto: Muthu Annamalai
il 1 Lug 2015
If I have functions Force_1 through Force_10, how can I write a for loop that runs all functions?
0 Commenti
Risposta accettata
Muthu Annamalai
il 1 Lug 2015
You can develop a solution using str2func() to turn the string into a function handle.
First generate a list of 10 strings, and store their handles
for count = 1:10
function_names{count} = sprintf('Force_%d',count);
function_handles{count} = str2func( function_names{count} );
end
To evaluate any function use the command,
feval
HTH
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Loops and Conditional Statements 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!