Azzera filtri
Azzera filtri

Help with rotation any single matrix of 3D matrix by 90 degrees

5 visualizzazioni (ultimi 30 giorni)
Suppose, I have 3D matrix of A = rand(5,4,3) and i want to rotate clockwise only 1st matrix with 90 degree and then change the values of 1st row of the rotated matrix with random values?

Risposta accettata

madhan ravi
madhan ravi il 16 Nov 2018
A = rand(5,4,3);
A1=rot90(A(:,:,1)) %first page matrix rotated 90 degrees
A1(1,:)=rand(1,size(A,1)) %first row inserted with random values

Più risposte (0)

Categorie

Scopri di più su Creating and Concatenating Matrices in Help Center e File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by