Create txt file from each row of Matrix

1 回表示 (過去 30 日間)
Rounak Saha Niloy
Rounak Saha Niloy 2022 年 3 月 15 日
回答済み: Rounak Saha Niloy 2022 年 3 月 15 日
I have a matrix D with size 3x7500. I want to generate separate text files with each row of matrix. How do I do this?

採用された回答

Rounak Saha Niloy
Rounak Saha Niloy 2022 年 3 月 15 日
The following code worked fine for me.
A=D';
for i = 1:7500
fid = fopen([num2str(i),'.txt'],'w') ;
fprintf(fid,'%f\n',A(i,:)) ;
fclose(fid) ;
end

その他の回答 (2 件)

KSSV
KSSV 2022 年 3 月 15 日
A = rand(3,10) ;
for i = 1:3
fid = fopen([num2str(i),'.txt'],'w') ;
fprintf(fid,'%f\n',A(i,:)) ;
fclose(fid) ;
end

Arif Hoq
Arif Hoq 2022 年 3 月 15 日
A=randi(100,3,7500);
writematrix(A(1,:),'myfile1.txt')
writematrix(A(2,:),'myfile2.txt')
writematrix(A(3,:),'myfile3.txt')

カテゴリ

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

製品


リリース

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by