How to create a cell of character array of size 10*1 with first 5 rows containing 'cat' and next 5, 'dog'?
An example of this type of cell array can be found in MATLAB when 'fisheriris.mat' is located.
I am trying to create a cell similar to that of 'species' variable.
Please help me

 Réponse acceptée

Vladimir Sovkov
Vladimir Sovkov le 8 Déc 2019

0 votes

S=cell(10,1);
S(1:5)={'cat'};
S(6:10)={'dog'};

1 commentaire

Pooja Patil
Pooja Patil le 8 Déc 2019
Thank you very much for the response. It is really helpful.

Connectez-vous pour commenter.

Plus de réponses (0)

Community Treasure Hunt

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

Start Hunting!

Translated by