To find Maximum value and minimum value for each group of four rows for a 180*1 matrix
1 回表示 (過去 30 日間)
古いコメントを表示
Say I have a 180x1 matrix. I have to find the max and min value of each 12 rows. e.g, max min value of 1-12th row and 13th to 24th row and so on..
0 件のコメント
採用された回答
KSSV
2021 年 7 月 27 日
A = rand(180,1) ;
B = reshape(A,12,[])' ;
themax = max(B) ;
themin = min(B) ;
0 件のコメント
その他の回答 (1 件)
Rik
2021 年 7 月 27 日
Easy if you reshape the vector to an array:
data=rand(180,1);
data_=reshape(data,12,[]);
max(data_,[],1)
min(data_,[],1)
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Loops and Conditional Statements についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!