iT邦幫忙

1

MATLAB從資料夾讀取特定檔案名稱並排列整理輸出到.txt

  • 分享至 

  • xImage

請教一下。資料夾裡有 AAA.m,BBB.m,CCC.m。
想要讀取這資料夾內所有.m檔名並輸出到.txt,.txt內依序排列如下
AAA.txt
BBB.txt
CCC.txt

下列是我嘗試輸出用.xlsx。但是我要改成輸出到.txt。
要如何更改呢?謝謝。

clear all ; clc

output = dir('*.m') ;
rowoutput = length(output) ;
for i = 1 : 1 : rowoutput
frname{i,:} = ['The file of ' output(i).name] ;
end
writecell( frname, 'TEST.xlsx', 'sheet', 1, 'Range', 'A1') ;

圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友回答

立即登入回答