필터 지우기
필터 지우기

How to cut multiple file ans past it to folder?

조회 수: 3 (최근 30일)
Faheem Ur Rehman
Faheem Ur Rehman 2021년 8월 3일
편집: Stephen23 2021년 8월 3일
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

답변 (2개)

Yongjian Feng
Yongjian Feng 2021년 8월 3일
편집: Yongjian Feng 2021년 8월 3일
mkdir 4ASK
for i=100:1000
copyfile(['frame4ASK' num2str(i) '.m'], 4ASK)

Stephen23
Stephen23 2021년 8월 3일
mkdir 4ASK
movefile frame4ASK*.m 4ASK

카테고리

Help CenterFile Exchange에서 Communications Toolbox에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by