How to save function outputs as a vector to workspace.
Show older comments
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.
Accepted Answer
More Answers (1)
Azzi Abdelmalek
on 30 Jul 2014
for k=1:N
[A(k) B(k)] = coconuts( a, b, c);
end
1 Comment
Ikenna Okoye
on 31 Aug 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!
Categories
Find more on Whos in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!