user31264
0
Q:

matlab create cell array of strings

>> legends = {'first'}
legends = 
    'first'
>> legends(end+1) = {'second'}
legends = 
    'first'    'second'
>> legends(end+1) = {'third'}
legends = 
    'first'    'second'    'third'
0

New to Communities?

Join the community