how to find a certain coordinate value in a curve

조회 수: 2 (최근 30일)
Adrian Ulza
Adrian Ulza 2017년 4월 7일
답변: Star Strider 2017년 4월 7일
Hi everyone, i need help.
Suppose i have a curve data as i attached. How do i find a B value that correspond to certain A value from that curve?
%%IMPORT OUTPUT FILE INTO MATLAB
load 'data.txt'
X=data(:,1);
Y=data(:,2);
A=max(X);
B=??
thanks for your help!

답변 (1개)

Star Strider
Star Strider 2017년 4월 7일
Ask the max function for two outputs. The second is the index of the first occurrence of the maximum in your vector, and use the index to define the corresponding value of ‘y’:
[A,idx] = max(X);
B = y(idx);

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by