how create cell array of blank space " "
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
cell(1,5)
0 comentarios
Respuesta aceptada
Voss
el 5 de Sept. de 2023
Cell array:
C = repmat({' '},1,5)
or:
C = cell(1,5);
C(:) = {' '}
A string array may be useful too:
S = repmat(" ",1,5)
or:
S = strings(1,5);
S(:) = " "
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Cell Arrays 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!