how create cell array of blank space " "
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
cell(1,5)
0 commentaires
Réponse acceptée
Voss
le 5 Sep 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 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Cell Arrays 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!