Borrar filtros
Borrar filtros

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

4 visualizaciones (últimos 30 días)
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

Respuesta aceptada

Sulaymon Eshkabilov
Sulaymon Eshkabilov el 29 de Mayo de 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 comentario
Sulaymon Eshkabilov
Sulaymon Eshkabilov el 29 de Mayo de 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)));

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Loops and Conditional Statements en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by