필터 지우기
필터 지우기

How to sort arrays with respect to one of the element in it

조회 수: 1 (최근 30일)
PRANAY DISHAN
PRANAY DISHAN 2018년 2월 14일
댓글: PRANAY DISHAN 2018년 2월 14일
Hello everyone, I have
Harmony=7x1 struct with two fields(solution & cost)
NewHarmony=3x1 struct with two fields(solution & cost)
I have combined Harmony and Newharmony and created NHS.
NHS=10x1 struct with two fields(solution & cost)
Now I need to sort the NHS with respect to the costs developed and eliminate the last three elements which will give new set of Harmony with optimised Cost values.
Please help me on this, Thank u

채택된 답변

Walter Roberson
Walter Roberson 2018년 2월 14일
[~, idx] = sort([NHS.cost]);
NHS = NHS(idx(1:end-3));

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Shifting and Sorting Matrices에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by