フィルターのクリア

Find minimum and maximum value from a matrix for a specific interval

2 ビュー (過去 30 日間)
Chaudhary P Patel
Chaudhary P Patel 2022 年 9 月 20 日
コメント済み: Chaudhary P Patel 2022 年 9 月 20 日
I have a 30X100 size matrix, for which i want to find minimum and maximum value for row 2,5,8,11,14,17,20,23,27.
How can i find the minimum and maximu values from these rows.

採用された回答

Walter Roberson
Walter Roberson 2022 年 9 月 20 日
rows = [2,5,8,11,14,17,20,23,27];
[minima, maxima] = bounds(YourMatrix(rows,:), 2);
  1 件のコメント
Chaudhary P Patel
Chaudhary P Patel 2022 年 9 月 20 日
I want to find the maximum minimum from the comparision of all the specified row with all column at a time.
can you please explain is command with a example.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMultidimensional Arrays についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by