I have a two dimensional mat file. i want to extract each row into seperate mat files ?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Wasna Madushanka Ediri Arachchi
am 8 Dez. 2017
Kommentiert: Wasna Madushanka Ediri Arachchi
am 9 Dez. 2017
I have a two dimensional mat file. i want to extract each row into seperate mat files and name it accordingly. Can you pls make available a code?
1 Kommentar
KSSV
am 8 Dez. 2017
It can be done...but why you want to do that? You have everything already in a single mat ile.
Akzeptierte Antwort
KSSV
am 8 Dez. 2017
A = rand(10) ;
n = size(A,1) ;
for i = 1:n
filename = strcat('row',num2str(i),'.mat') ;
Ar = A(i,:) ;
save(filename,'Ar') ;
end
0 Kommentare
Weitere Antworten (1)
Wasna Madushanka Ediri Arachchi
am 8 Dez. 2017
Bearbeitet: Wasna Madushanka Ediri Arachchi
am 8 Dez. 2017
4 Kommentare
Stephen23
am 8 Dez. 2017
@Wasna Madushanka Ediri Arachchi: sure, your question makes it clear that you want to combine data. I asked why you are splitting one .mat file into lots of separate .mat files, and then apparently loading these back into memory to perform some operations on. Unless you are reaching the limits of your memory there seems to be no point to this diversion.
Siehe auch
Kategorien
Mehr zu Data Type Conversion finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!