I have a two dimensional mat file. i want to extract each row into seperate mat files ?

2 ビュー (過去 30 日間)
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 件のコメント
KSSV
KSSV 2017 年 12 月 8 日
It can be done...but why you want to do that? You have everything already in a single mat ile.

サインインしてコメントする。

採用された回答

KSSV
KSSV 2017 年 12 月 8 日
A = rand(10) ;
n = size(A,1) ;
for i = 1:n
filename = strcat('row',num2str(i),'.mat') ;
Ar = A(i,:) ;
save(filename,'Ar') ;
end

その他の回答 (1 件)

Wasna Madushanka Ediri Arachchi
Wasna Madushanka Ediri Arachchi 2017 年 12 月 8 日
編集済み: Wasna Madushanka Ediri Arachchi 2017 年 12 月 8 日
Thanks. kindly let me know how to concatenate each row if we have 3 matrices. I have already obtained seperate mat files for each row. Best
Madu
  4 件のコメント
Stephen23
Stephen23 2017 年 12 月 8 日
@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.
Wasna Madushanka Ediri Arachchi
Wasna Madushanka Ediri Arachchi 2017 年 12 月 9 日
I am quite new to Matlab..That is why I am using long pathways. anyway I extracted those data from original matrices and concatenated, Thanks Stephen.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeStructures についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by