Find corresponding element in same row as given value in matrix

조회 수: 29 (최근 30일)
nogooduser
nogooduser 2022년 1월 15일
댓글: nogooduser 2022년 1월 18일
Hi there,
I am working with two column matrices. The matrices pull data from external files. Both matrices show basically one column corresponding to an x variable and one column corresponding to a y variable. The matrices share the same x variables and different y variables. I would like to:
  1. Find maximum y value in 1 of the column matrices.
  2. Use x value corresponding to max y value in matrix 1 to find y value in matrix 2.
Thank you in advance.

채택된 답변

Stephen23
Stephen23 2022년 1월 15일
Assuming that A and B are you matrices, and that the Y values are in the second columns:
[valA,idx] = max(A(:,2))
valB = B(idx,2)

추가 답변 (0개)

카테고리

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

태그

제품


릴리스

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by