How to cut multiple file ans past it to folder?
2 ビュー (過去 30 日間)
古いコメントを表示
I have fram4ASK100.mat to fram4ASK1000.mat in a folder and i want to cut them and past them intp new folder name as 4ASK.
I have tried follwoing code but it does't work
for i=100:1000
mkdir 4ASK
copyfile frame4ASK(i).m 4ASK
0 件のコメント
回答 (2 件)
Yongjian Feng
2021 年 8 月 3 日
編集済み: Yongjian Feng
2021 年 8 月 3 日
mkdir 4ASK
for i=100:1000
copyfile(['frame4ASK' num2str(i) '.m'], 4ASK)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!