create a cell array of N dimensions of type char

2 vues (au cours des 30 derniers jours)
Robert Scott
Robert Scott le 29 Juil 2021
Commenté : Robert Scott le 29 Juil 2021
As the title says,
How do i create a cell array of N dimensions of type char.
Thanks

Réponses (1)

Dave B
Dave B le 29 Juil 2021
Modifié(e) : Dave B le 29 Juil 2021
A cell array has type cell, but you can use repelem/repmat to make a cell array where each cell contains an empty char:
If you want a cell array of size 1,n where each cell contains an empty char...
repelem({''},n)
Or for a cell of size m,n where each cell contains an empty char:
repmat({''},m,n)
For an n dimensional cell array, where the last dimension has a size>1, something like this:
sz=[1 2 3 4 5];
repmat({''},sz)
  1 commentaire
Robert Scott
Robert Scott le 29 Juil 2021
Thanks, i figured it out with repmat after the fact

Connectez-vous pour commenter.

Catégories

En savoir plus sur Structures dans Help Center et File Exchange

Tags

Produits


Version

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by