"Tommy Lee" wrote in message <mfehr5$f8r$1@newscl01ah.mathworks.com>...
> Hi Folks,
> pls I need help with name of columns and of rows. I would like to have something like this:
>
> fast
> 1 1 1 1 1
> 2 2 2 2 2
> f 3 3 3 3 3
> a 4 4 4 4 4
> s 5 5 5 5 5
> t 6 6 6 6 6
> e 7 7 7 7 7
> r 8 8 8 8 8
> 9 9 9 9 9
> 10 10 10 10 10
>
> So thats what I need, name of rows and name of columns. Thanky you very much I really aprecciate every help.
>
> With regards
> TommyLee
% You really can't do what you want (if I understand) with a matrix The number of elements in each row and column must be the same (i.e., rectangular). And you can't mix characters & strings.
% You might try using a cell array, but I'm not sure that's what you want.
doc cell
% or
<<http://www.mathworks.com/help/matlab/ref/cell.html>>
> Hi Folks,
> pls I need help with name of columns and of rows. I would like to have something like this:
>
> fast
> 1 1 1 1 1
> 2 2 2 2 2
> f 3 3 3 3 3
> a 4 4 4 4 4
> s 5 5 5 5 5
> t 6 6 6 6 6
> e 7 7 7 7 7
> r 8 8 8 8 8
> 9 9 9 9 9
> 10 10 10 10 10
>
> So thats what I need, name of rows and name of columns. Thanky you very much I really aprecciate every help.
>
> With regards
> TommyLee
% You really can't do what you want (if I understand) with a matrix The number of elements in each row and column must be the same (i.e., rectangular). And you can't mix characters & strings.
% You might try using a cell array, but I'm not sure that's what you want.
doc cell
% or
<<http://www.mathworks.com/help/matlab/ref/cell.html>>