How to save function outputs as a vector to workspace.
Mostrar comentarios más antiguos
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.
Respuesta aceptada
Más respuestas (1)
Azzi Abdelmalek
el 30 de Jul. de 2014
for k=1:N
[A(k) B(k)] = coconuts( a, b, c);
end
1 comentario
Ikenna Okoye
el 31 de Ag. de 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!
Categorías
Más información sobre Simulink en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!