필터 지우기
필터 지우기

help in adding a descending order a symetric matric

조회 수: 1 (최근 30일)
ana take
ana take 2017년 1월 16일
댓글: ana take 2017년 1월 17일
Hello! I want to put in a descending order just the part upper the main diagonal in a symmetric matrix and to get the index of those elements. What should I change in this code?
function [values,i,j] = max(A,n)
[a, linIdx] = sort(A(:),'descend');
values = a(1:n);
[i,j] = ind2sub(size(A),linIdx(1:n));
  댓글 수: 1
Walter Roberson
Walter Roberson 2017년 1월 17일
Please do not call your function "max" as that interferes with using the key MATLAB routine "max"

댓글을 달려면 로그인하십시오.

채택된 답변

John Chilleri
John Chilleri 2017년 1월 16일
편집: John Chilleri 2017년 1월 16일
Hello,
Here's a very inelegant solution, but it does the job. I'm making all values below the main diagonal -Inf so that they're guaranteed to not be apart of the a(1:n) when you sort, assuming your original matrix does not contain -Infinities (this also includes the main diagonal, I can change it to exclude it if necessary).
function [values,i,j] = whateveryouwanttocallit(A,n)
low = tril(A-Inf,-1)+1;
A = low.*A;
[a, linIdx] = sort(A(:),'descend');
values = a(1:n);
[i,j] = ind2sub(size(A),linIdx(1:n));
end
Hope this helps!

추가 답변 (1개)

Walter Roberson
Walter Roberson 2017년 1월 17일
See https://www.mathworks.com/matlabcentral/newsreader/view_thread/278808 for information on extracting the upper diagonal.
However, the question arises of which index you are looking for. Are you looking for an index relative to the vector of extracted values, or are you looking for the index into the original matrix?

카테고리

Help CenterFile Exchange에서 Operating on Diagonal Matrices에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by