Effacer les filtres
Effacer les filtres

how loop output store

1 vue (au cours des 30 derniers jours)
sonu
sonu le 18 Avr 2013
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...

Réponse acceptée

Iman Ansari
Iman Ansari le 18 Avr 2013
Modifié(e) : Iman Ansari le 18 Avr 2013
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
  1 commentaire
sonu
sonu le 25 Avr 2013
THNX

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Loops and Conditional Statements dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by