Effacer les filtres
Effacer les filtres

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

4 vues (au cours des 30 derniers jours)
Kevin Burg
Kevin Burg le 29 Mai 2021
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

Réponse acceptée

Sulaymon Eshkabilov
Sulaymon Eshkabilov le 29 Mai 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 commentaire
Sulaymon Eshkabilov
Sulaymon Eshkabilov le 29 Mai 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)));

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

Produits


Version

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by