Min and Max values and corresponding x/y values

조회 수: 46 (최근 30일)
SGer
SGer 2022년 9월 1일
답변: Rik 2022년 9월 1일
Hi there,
i need to find the maximum and minimum values of my force (F1) and the corresponding locations of the point (x,y values). I've been able to find the min and max values, however, I'm struggling to find a way of computing the corresponding (x,y values) without manually looking at my maxtrix and entering the eaxct row and column.
Is there a code that can determine these x/y values based on the value of F1?

답변 (2개)

Simon Chan
Simon Chan 2022년 9월 1일
use two output arguments from function max

Rik
Rik 2022년 9월 1일
You should use the second output of the min function to return the linear index of the position with the lowest value.
Since you've entered a vector, you don't even need to use ind2sub.
A=QW_out(:,1);
[val,ind]=min(A);
[row,col]=ind2sub(size(A),ind) % optional, since row will be ind and col will be 1

카테고리

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

태그

제품


릴리스

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by