Borrar filtros
Borrar filtros

How can i store all simulation results from ?

2 visualizaciones (últimos 30 días)
arkedia
arkedia el 10 de Dic. de 2012
I'm running a simulation algorithm for example 500 runs, (note the result is matrix) , my question is: How can i store all the results "the 500 matrix" ? i want first matrix,then the second after the first etc. i will have a bigger matrix 500 matrix vertically, Is it possible??
  2 comentarios
TAB
TAB el 10 de Dic. de 2012
What is size of your simulation output matrix ?
arkedia
arkedia el 10 de Dic. de 2012
the maximum size is 5 columns and the row = the runs (500 or 1000 or 5000)

Iniciar sesión para comentar.

Respuestas (2)

Muruganandham Subramanian
Muruganandham Subramanian el 10 de Dic. de 2012
Use diary command

TAB
TAB el 10 de Dic. de 2012
% Create matrix to store result
MySavedResult = zeros(500,5);
% Store like this
for x=1:500
res = SomeProcessing; % Get 1x5 result vector
MySavedResult(x,:) = res; % Save result
end

Categorías

Más información sobre Data Type Conversion 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