MATLAB: How to create an array with the same letter but different number

array

Hi,
How can I create an array or cell, something like Variable = {'X1','X2','X3',…,'X43'}? when i give for example the length = 43.
So when I do my plots, i call put the title as title (variable(i))
Thanks!

Best Answer

Len = 43;
V = sprintfc('X%d', 1:Len);
Or with modern Matlab versions:
V = compose('X%d', 1:Len);
Then:
title(V{i})