function in a loop in matlab

1 view (last 30 days)
Rica
Rica on 14 Feb 2013
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!

Accepted Answer

Image Analyst
Image Analyst on 14 Feb 2013
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)?

More Answers (0)

Categories

Find more on Loops and Conditional Statements 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!