フィルターのクリア

how to convert matrix column into separate text?

3 ビュー (過去 30 日間)
Hydro
Hydro 2017 年 6 月 20 日
コメント済み: Hydro 2017 年 6 月 21 日
Hi all, I have a 365*45 matrix, which represents one-year data for 45 subbasins. I would like to convert each column of the matrix to a separate text file (45 text file with a year data) and naming the file as subbasin_1, subbasin_2 etc. Any thought would be highly appreciated.

採用された回答

Rik
Rik 2017 年 6 月 20 日
You obviously did not Google/Bing/Yahoo this.
You can use a loop, combined with sprintf to do this.
for n=1:45
filename=sprintf('subbasin_%d.txt',n);
fid=fopen(filename);
%
%put your writing code here
%
fclose(fid);
end
  3 件のコメント
Walter Roberson
Walter Roberson 2017 年 6 月 21 日
After the fopen() and before the fprintf(), add another fprintf() that puts in the header you want.
Hydro
Hydro 2017 年 6 月 21 日
Excellent. Thank you Walter and Rik.

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeData Type Conversion についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by