フィルターのクリア

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

5 ビュー (過去 30 日間)
Muniba Shah
Muniba Shah 2018 年 11 月 16 日
コメント済み: Muniba Shah 2018 年 11 月 16 日
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?

採用された回答

madhan ravi
madhan ravi 2018 年 11 月 16 日
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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeCreating and Concatenating Matrices についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by