Generate a set of 1000 elements where each element is a set of 40 elements
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Mohammad Ahmed
le 17 Août 2016
Modifié(e) : Azzi Abdelmalek
le 17 Août 2016
I want to Generate a Set of 1000 elements where each element is also a set of 40 elements. Apart from employing matrices, is there any other way.
0 commentaires
Réponse acceptée
Azzi Abdelmalek
le 17 Août 2016
Modifié(e) : Azzi Abdelmalek
le 17 Août 2016
A=cell(1,1000)
B=cellfun(@(x) randi(10,1,40),A,'un',0) % Example
0 commentaires
Plus de réponses (1)
Thorsten
le 17 Août 2016
You can use cell arrays. But why don't you want to use matrices?
0 commentaires
Voir également
Catégories
En savoir plus sur Matrices and 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!