How can I sort valus of a field in struct?

조회 수: 1 (최근 30일)
Mira le
Mira le 2021년 4월 30일
댓글: Mira le 2021년 5월 1일
Hello Everyone
I have an issue to sort values so
I have struct named R contains field : sequance [ ]
Cost [ ]
weights (value)
I want to sort R according to weights in ascending order
please help me.
Thank you
  댓글 수: 1
Jan
Jan 2021년 5월 1일
Is R a scalar struct or a struct array? Are the contents of the weights field scalars?

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

채택된 답변

Jan
Jan 2021년 5월 1일
Maybe:
[~, index] = sort([R.weights]);
sortedR = R(index)
  댓글 수: 1
Mira le
Mira le 2021년 5월 1일
R is a struct array;
the content of the weights are scalar

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Structures에 대해 자세히 알아보기

태그

제품


릴리스

R2017a

Community Treasure Hunt

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

Start Hunting!

Translated by