How to create a matrix with arbitrary dimensions
13 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Michael Haitz
le 20 Fév 2019
Commenté : Jos (10584)
le 20 Fév 2019
Hi,
I like to create a matrix with arbitrary dimensions.
E.g., I need a function getMatrix(m, s), which returns a m-dimensional matrix with size s, filled with zeros or ones.
Could not working out until today, help is appreciated.
0 commentaires
Réponse acceptée
Jos (10584)
le 20 Fév 2019
To create an zero array of an arbitray dimensions between 1 and D with arbitry sizes between 1 and S :
D = 10 ;
S = 6 ;
X = arrayfun(@(x) randi(S), 1:randi(D),'un',0)
M = zeros(X{:})
[size(M) ; [X{:}]]
2 commentaires
Jos (10584)
le 20 Fév 2019
You want a Sz-by-Sz-by- ... -by-Sz array, where Dims specfies the number of Sz's
Res = zeros(repmat(Sz, 1, D))
Plus de réponses (1)
Geoff Hayes
le 20 Fév 2019
Michael - this seems like a homework question so see zeros or ones for how to create a matrix of zeros or ones respectively. And see Declare function name, inputs, and outputs for how to build your function.
Voir également
Catégories
En savoir plus sur Resizing and Reshaping Matrices dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!