how loop output store

1 次查看(过去 30 天)
sonu
sonu 2013-4-18
hi
i have loop output in terms of price after every loop i got the price value ...how can i see this price value in table form..in continuous manner store in one veritable...

采纳的回答

Iman Ansari
Iman Ansari 2013-4-18
编辑:Iman Ansari 2013-4-18
Hi. What is the size of your price value in each loop:
for i=1:n
% if it is a number
output(i,1)=price;
% if it is a column vector
output(:,i)=price;
% if it is a row vector
output(i,:)=price;
% if it is a matrix or its size changes in each loop
output{i}=price;
end

更多回答(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