Borrar filtros
Borrar filtros

storing values from loops

1 visualización (últimos 30 días)
harley
harley el 3 de Oct. de 2013
Respondida: David Sanchez el 3 de Oct. de 2013
how do i store the values of MJ_V12, they are being overwritten in each loop. Should end up with a 41 x 100 matrix. i've tried
MJ_V12=zeros(41,100);
but didn't work for me.
for a=[1:100];
%coding here left out
FMJ_cars_wait_2 = @(T12,MJ_V12) (lambdaMJ_sec(a) - MJ_Flow);%
[T12,MJ_V12] = ode45(FMJ_cars_wait_2,[MJ_Red,Total_cycle],R_G_MJ);
end

Respuesta aceptada

David Sanchez
David Sanchez el 3 de Oct. de 2013
Use a temporary variable:
for a=[1:100];
%coding here left out
FMJ_cars_wait_2 = @(T12,MJ_V12) (lambdaMJ_sec(a) - MJ_Flow);%
[T12,temp_var] = ode45(FMJ_cars_wait_2,[MJ_Red,Total_cycle],R_G_MJ);
MJ_V12(:,a) = temp_var;
end

Más respuestas (0)

Categorías

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

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by