フィルターのクリア

Finding maximum in a matrix

3 ビュー (過去 30 日間)
Rohan  Mehta
Rohan Mehta 2019 年 6 月 22 日
コメント済み: KALYAN ACHARJYA 2019 年 6 月 24 日
Suppose I have 1000x1 matrix and my data is from (50,60) and then from (160,170) and so on (i.e randomly distributed), What I want is to find maximum out of this 50 to 60 location and then maximum from 160 to 170 location and so on. How to find this ?
  3 件のコメント
Rohan  Mehta
Rohan Mehta 2019 年 6 月 22 日
index locations
Rohan  Mehta
Rohan Mehta 2019 年 6 月 22 日
yes these locations are stored in another matrix

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

採用された回答

KALYAN ACHARJYA
KALYAN ACHARJYA 2019 年 6 月 22 日
編集済み: KALYAN ACHARJYA 2019 年 6 月 22 日
Suppose mat is 1000x1 matrix
%this will give the maximum value within the matrix uptp 50 rows and 60 colm
mat1=mat(1:50,1:60);
max1=max(mat1(:));
You can do the same form other also
mat2=mat(1:160,1:170);
max2=max(mat2(:));
Is this you are looking for?
  4 件のコメント
Rohan  Mehta
Rohan Mehta 2019 年 6 月 24 日
Hello Sir this piece of code almost solved my problem As I have found all the maximums but one doubt is how to assign the location's of these maximum to another matrix ?
KALYAN ACHARJYA
KALYAN ACHARJYA 2019 年 6 月 24 日
how to assign the location's of these maximum to another matrix?
The second part of comment is not clear for me.
Are you looking for this one?
mat_other(r1,c1)
%..........^ index values from first matrix having maximum value

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMatrix Indexing についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by