On Cell Array
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
need help with the following question.
Write an expression that would display a random element from a cell array (without assuming that the number of elements in the cell array is known).
0 commentaires
Réponse acceptée
Andrei Bobrov
le 10 Fév 2012
C - your cell array n - number of elements in the your cell array
out = C(randi(n))
or
out = C{randperm(n,1)}
0 commentaires
Plus de réponses (0)
Voir également
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!