how create cell 1:10 vertical
20 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
aldo
el 12 de Nov. de 2023
Editada: John D'Errico
el 12 de Nov. de 2023
c={(1:10)'}
%but is not correct..i want to creare 1x10cell
0 comentarios
Respuesta aceptada
Dyuman Joshi
el 12 de Nov. de 2023
c = (1:10).';
c = num2cell(c)
Más respuestas (1)
John D'Errico
el 12 de Nov. de 2023
Editada: John D'Errico
el 12 de Nov. de 2023
There are always many ways to solve a problem. An easy way to create the cell array directly is to do this:
C1 = {1;2;3;4;5;6;7;8;9;10}
And, yes, that works nicely for a small array, but for a larger one you will want to use another tool. num2cell is a good choice, as suggested already. mat2cell will also work, but not quite as nicely.
0 comentarios
Ver también
Categorías
Más información sobre Operators and Elementary Operations en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!