Repeat 3-D array elements

19 vues (au cours des 30 derniers jours)
Joana
Joana le 12 Déc 2019
Hi
I have a 3-d array x of size 67x960x80. I need to repeat the elements of the array 3 times to make it an array of size 67x960x240. How i can do that.?

Réponse acceptée

Star Strider
Star Strider le 12 Déc 2019
Use the repmat function:
A = rand(67, 960, 80);
B = repmat(A, 1, 1, 3);
sizeB = size(B)
producing:
sizeB =
67 960 240

Plus de réponses (0)

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!

Translated by