Hello again.My data points creates a continuous line in the figure.I want to ask, if there is a way to specify the value of x-axis for y-axis=1/e even if i dont have point with these values. I have tried it, but the answer was 'empty matrix 1-0' (sth like this)

 채택된 답변

Mischa Kim
Mischa Kim 2014년 2월 25일
편집: Mischa Kim 2014년 2월 25일

0 개 추천

Pantelis, use curve fitting. As an example,
x = 0:0.1:1;
y = sin(x); % your data
p = polyfit(x(3:4),y(x>=x(3) & x<=x(4)),1); % fitting coefficients
yf = p(2) + p(1)*x(3:4); % curve fit
plot(x,y,x(3:4),yf,'r*')
Of course, you want to make sure that the fitting is done over a "small" region (just as an example, between 3rd and 4th data points, as shown above) to get a "good" approximation of the in-between vals.

댓글 수: 1

Pantelis Saviolakis
Pantelis Saviolakis 2014년 2월 25일
i tried it but i take the same answer.Obviously i do sth wrong. I will try it later. Thanks.

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

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Axis Labels에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by