Azzera filtri
Azzera filtri

Function Save() and optimizzation

3 visualizzazioni (ultimi 30 giorni)
Salvatore Turino
Salvatore Turino il 18 Nov 2011
Hello i want to optimize my code. i have these 3 matrix:
save H_scorr
save Hscorr_abs
save Hscorr_ang
in exit from a for() cicle, that are all 7x7. Does exist a way to save them in 1 file .mat? Next step is that these three matrix became 12 (4x3matrix all 7x7) and i need to save all of them. Actually the only idea i had to save them all is a simply:
if i==1
H_scorr=Hscorr;
H_scorr_abs=Hscorr_abs;
H_scorr_ang=Hscorr_ang;
save H_scorr
save Hscorr_abs
save Hscorr_ang
end
with the if that is repeated four times but of course i don't like this way....can you help me to optimize this part of my code?
the idea i've had is:
H_scorr(i)=Hscorr;
but i've got this error:
??? In an assignment A(I) = B, the number of elements in B and
I must be the same.
Error in ==> prova at 103 H_scorr(i)=Hscorr;
thank you
  2 Commenti
Swarooph
Swarooph il 18 Nov 2011
Let me reiterate the question to see if I understand this correctly.
1. You want to know how to save 3 different variables in a single MAT file
2. Do you want to save all the 12 matrices separately so that finally your MAT file will have 12 matrices?
Salvatore Turino
Salvatore Turino il 19 Nov 2011
1. yes
2. i want to save the 12 matrices separately so that finally i'll have 4 .mat file with 3 matrices inside (like in point 1), without using 4 "if" cases but only, if it is possibile, the indice i of the for() like a vector/matrix

Accedi per commentare.

Risposte (1)

Image Analyst
Image Analyst il 18 Nov 2011
It can be quite informative if you look up the help for functions. That way you'd see how what you want is there in black and white as an example:
save(yourFullMatFileName, 'H_scorr',...
'Hscorr_abs', 'Hscorr_ang');
  1 Commento
Salvatore Turino
Salvatore Turino il 19 Nov 2011
Attempt to reference field of non-structure array.
Error in ==> prova at 110
save(Hscorr.mat,'H_scorr','Hscorr_abs', 'Hscorr_ang');
doesn't work.....

Accedi per commentare.

Categorie

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

Community Treasure Hunt

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

Start Hunting!

Translated by