loop for measuring values in different cases

2 次查看(过去 30 天)
Hi,
If I want to measure the value of something in different cases, how I do it?
because in this loop it will show previous values:
n=3; for i=1:n y(i) = i + 2 end
y = 3 y = 3 4 y = 3 4 5
I don't want to be like that above. I want the results show as follows:
y1 = 3 y2 = 4 y3 = 5
how I can do that?
Thanks

采纳的回答

Matt J
Matt J 2013-4-12
n=3;
y=nan(1,n); %PREALLOCATE!!!
for i=1:n
y(i) = i + 2;
end;
sprintf('y%d = %d ', [1:n;y])

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Loops and Conditional Statements 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by