MATLAB: Function in a loop in matlab

function loop

Hi!
how could i use a funktion in for loop in matlab.
as an exemple :
%
for i=1:4
[out1 out2]=function_name(input1,input2)
end
i want to get out1 and out2 after each i.
like this: OUTPUT1=[out1;out1;out1;out1]
OUTPUT2=[out2;out2;out2;out2]
thank you!

Best Answer

Your solution looks fine if out1 and out2 are row vectors, and OUTPUT1 and out1, and OUTPUT2 and out2 have the same number of columns. Did you have any other questions (otherwise you could have just deleted your question before anyone answered it if you solved it yourself)?
Related Question