How to make sure number of digits remain same, padded if required
    조회 수: 3 (최근 30일)
  
       이전 댓글 표시
    
I am assigning names in a loop of the form img000.png,img001.png and so on. I’m using strcat as follows:
%num=000 %strcat(‘img’,num2str(num),’.png’) %num=+1
How do I make the assignment of num so that it always remains 3 digits?
댓글 수: 0
채택된 답변
  JULIEN BARBAUD
      
 2019년 4월 22일
        
      편집: JULIEN BARBAUD
      
 2019년 4월 22일
  
      Try to use something like
img_name=sprintf('img%03d',num)
 instead of the strcat line
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
				Help Center 및 File Exchange에서 Logical에 대해 자세히 알아보기
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!