How to save function outputs as a vector to workspace.
Afficher commentaires plus anciens
function [A B] = coconuts( a, b, c)
the function will run many times, each time outputting a unique A & B. How can I save each A & B output into a corresponding (N,1) vector that is available in the workspace?
Thank you.
Réponse acceptée
Plus de réponses (1)
Azzi Abdelmalek
le 30 Juil 2014
for k=1:N
[A(k) B(k)] = coconuts( a, b, c);
end
1 commentaire
Ikenna Okoye
le 31 Août 2018
It works nicely, but is there a way to increment the k=1:N? I wrote a code for an atmospheric model and I need to plot the output of the function and I'm varying it from 1km to 100km by 1km increments. I would appreciate your help!
Catégories
En savoir plus sur Whos dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!