MATLAB: Strcat help

function

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

Best Answer

filename = sprintf('frame%03d.jpg', i)
Related Question