strcat help

조회 수: 4 (최근 30일)
James
James 2011년 8월 19일
댓글: Walter Roberson 2020년 5월 19일
filename=strcat('frame',num2str(i),'.jpg')
This line is within a for loop so images are created with filenames...
frame1, frame2...frame50
How can I change this line of code so that it is... frame001, frame002 ... frame050

채택된 답변

Jan
Jan 2011년 8월 20일
filename = sprintf('frame%03d.jpg', i)

추가 답변 (2개)

Walter Roberson
Walter Roberson 2011년 8월 19일

Micky Elias
Micky Elias 2020년 5월 19일
filename=strcat(num2str(img,'%04i'),'.jpg');
  댓글 수: 1
Walter Roberson
Walter Roberson 2020년 5월 19일
%03i not %04i for the user question.

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by