Effacer les filtres
Effacer les filtres

how create cell array of blank space " "

6 vues (au cours des 30 derniers jours)
pipor
pipor le 5 Sep 2023
Réponse apportée : Voss le 5 Sep 2023
cell(1,5)
ans = 1×5 cell array
{0×0 double} {0×0 double} {0×0 double} {0×0 double} {0×0 double}

Réponse acceptée

Voss
Voss le 5 Sep 2023
Cell array:
C = repmat({' '},1,5)
C = 1×5 cell array
{' '} {' '} {' '} {' '} {' '}
or:
C = cell(1,5);
C(:) = {' '}
C = 1×5 cell array
{' '} {' '} {' '} {' '} {' '}
A string array may be useful too:
S = repmat(" ",1,5)
S = 1×5 string array
" " " " " " " " " "
or:
S = strings(1,5);
S(:) = " "
S = 1×5 string array
" " " " " " " " " "

Plus de réponses (0)

Catégories

En savoir plus sur Data Types dans Help Center et File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by