在Matlab中使用计数命名

  • 本文关键字:Matlab matlab naming
  • 更新时间 :
  • 英文 :

FileName = fullfile('C:UsersUserDesktop1cm circle cropped 0.27',sprintf('circle_cropped_%d.jpg',count));

我使用的代码会给出文件名(circle_cropped_1.jpg、circle_cropped_2.jpg、ciCircle_crop佩德_3.jpg……(

如何用";circle_cropped_001.jpg、circle_cropped_002.jpg、circle_crop佩德_003.jpg;

如何移动计数?成为";001_circle_cropped.jpg、002_circle_cropped.jpg和003_circle-cropped.jpg;

FileName = fullfile('C:UsersUserDesktop1cm circle cropped 0.27',sprintf('%03d_circle_cropped.jpg',count));

假设您希望总字段宽度为3。如果需要更多,请指定%04d%05d等,前缀0可确保用零填充所需的字符串宽度。

相关内容

  • 没有找到相关文章

最新更新