how to naming files sequently?

조회 수: 1 (최근 30일)
Lilya
Lilya 2017년 8월 18일
댓글: Lilya 2017년 8월 19일
Hi all,
could anyone help me with this file naming (control loop)
TOTL_REDC_2017_07_ 02_0500
the bold part is fixed in all files, while the remaining part is different
02 corresponding to number of days (02, 03, 04, ..., 29, 30, 31)
0500 corresponding to number of hours (0500, 0600, 0700, ..., 2200, 2300, 0000(second day)... etc))
thank you for your help.

채택된 답변

Walter Roberson
Walter Roberson 2017년 8월 18일
prefix = 'TOTL_REDC_2017_07';
ThisFileName = sprintf('%s_%02d_%04d', prefix, this_day_number, this_hour_number)
  댓글 수: 1
Lilya
Lilya 2017년 8월 19일
thank so much Mr. Walter.

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

KL
KL 2017년 8월 18일
편집: KL 2017년 8월 18일
prefix = 'TOTL_REDC_2017_07_';
days = {'02_','03_'};
hours = {'0500','0600'};
fileNames = cellfun(@(d,h) [prefix d h], days, hours, 'UniformOutput',false);
  댓글 수: 1
Lilya
Lilya 2017년 8월 19일
thank you so much.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 MATLAB Coder에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by