let's say , I have matrix
A=[3 1;4 9 ;5 7 ];
A=[3 1
4 9
5 7 ];
I can find the maximum value from matrix A is 9:
max_value=max(max(A));
How can I get the value is in same row of 9, that is, 4 ?

 Réponse acceptée

madhan ravi
madhan ravi le 16 Août 2019

1 vote

[Val,ix]=max(A(:));
[r,~]=ind2sub(size(A),ix);
A(r,:) %complete row where maximum exists

5 commentaires

ha ha
ha ha le 16 Août 2019
You are right. But, How can I get value "4"?
madhan ravi
madhan ravi le 16 Août 2019
A(r,1)
ha ha
ha ha le 16 Août 2019
Modifié(e) : ha ha le 16 Août 2019
you assumed that , the value "4" is in the 1st column of matrix A. But, actually, I don't know where it is (It may be in 1st or 2nd column of matrix A)
Thanks so much madhan ravi
I edit form your answer
Stephen23
Stephen23 le 16 Août 2019
>> A = [3,1;4,9;5,7]
A =
3 1
4 9
5 7
>> [V,X] = max(A(:));
>> [R,C] = ind2sub(size(A),X);
>> A(R,3-C)
ans = 4
madhan ravi
madhan ravi le 16 Août 2019
[Val,ix]=max(A(:));
[r,c]=ind2sub(size(A),ix);
Wanted = A(r,setdiff(1:size(A,2),c))

Connectez-vous pour commenter.

Plus de réponses (2)

KSSV
KSSV le 16 Août 2019

0 votes

[val,idx] = max(A(:)) ;
A(idx,:)

1 commentaire

ha ha
ha ha le 16 Août 2019
Modifié(e) : ha ha le 16 Août 2019
Your answer is wrong. Plz check it again

Connectez-vous pour commenter.

ha ha
ha ha le 16 Août 2019

0 votes

[Val,ix]=max(A(:));
[r,c]=ind2sub(size(A),ix);
A(r,setdiff(1:size(A,2),c),:);

2 commentaires

madhan ravi
madhan ravi le 16 Août 2019
What’s the hurry before editing the comment?? XD . I was using my mobile to answer and I just mistyped the colon inside setdiff().
ha ha
ha ha le 16 Août 2019
Modifié(e) : ha ha le 16 Août 2019
Sorry madhan ravi.
Thank so much for your prompt reply
Hope all bests to you.

Connectez-vous pour commenter.

Catégories

Tags

Aucun tag saisi pour le moment.

Community Treasure Hunt

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

Start Hunting!

Translated by