Azzera filtri
Azzera filtri

How to save output from equation in for loop into an array

4 visualizzazioni (ultimi 30 giorni)
I currently am calculating the values for an equation over a range of values. The output is only saving the last calculated in the value of the foor loop. How do I create an array so all the values are stored? Thank you for the help
% Range from 0.0 m to 4.00 m using 0.01 m increment
for i = 0.0:0.01:4.00
% Formula for enthalpy from entrance to exit
x_out = x_in + ((1/m)*(pi*Q_flux*D*i));
end

Risposta accettata

Sulaymon Eshkabilov
Sulaymon Eshkabilov il 29 Mag 2021
% Range from 0.0 m to 4.00 m using 0.01 m increment
t=0.0:0.01:4.00;
for ii = 1:numel(t)
% Formula for enthalpy from entrance to exit
x_out(ii) = x_in + ((1/m)*(pi*Q_flux*D*t(ii)));
end
  1 Commento
Sulaymon Eshkabilov
Sulaymon Eshkabilov il 29 Mag 2021
Note that this can be also solved without a loop using vectorization.
x_out = x_in + ((1/m)*(pi*Q_flux*D*(0.0:0.01:4.00)));

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Loops and Conditional Statements in Help Center e File Exchange

Prodotti


Release

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by