MATLAB: How to create array of alphanumeric

arrayconcatenatejoin;

I want to make array of A1 A31 A61 A91 Please suggest me code

Best Answer

You could create a cell array of strings:
C = {'A1','A31','A61','A91'}
Or if you have R2016b or newer, then you could use strings:
S = string({'A1','A31','A61','A91'})