How to create a 5D matrix by repeating a 2D array?
13 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Ramadhan Hakim
le 27 Juil 2020
Commenté : Ramadhan Hakim
le 28 Juil 2020
Hello everyone,
I'm trying to create a 5D matrix from a 2D array by repeating it for each array in the 5D matrix. I managed to do it using for loop.
A = zeros(1,70); % 2D array
X = zeros(length(N),length(lg),length(C),length(E),length(A)); %% 5D matrix
for p = 1:1:length(A)
X(:,:,:,:,p)=A(p);
end
Is there any shorter way to do this?
Thanks.
0 commentaires
Réponse acceptée
Fangjun Jiang
le 27 Juil 2020
A has 70*70 elements. The loop runs only 70 times.
Anyway, look into repmat(), reshape(),repelem().
3 commentaires
Fangjun Jiang
le 27 Juil 2020
Modifié(e) : Fangjun Jiang
le 27 Juil 2020
A=1:5;
X=zeros(2,3,5);
X=reshape(repelem(A,2*3),2,3,[])
Plus de réponses (0)
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!