필터 지우기
필터 지우기

i have two array x=[1 6 8 9],y=[3 6 9 14],then i plot (x,y) in matlab. i have no linear equation of x,y. i have only above array of x and y. if value of x is 4 then what is the value of y. is it possible using logic?

조회 수: 1 (최근 30일)
i have two array x=[1 6 8 9],y=[3 6 9 14],then i plot (x,y) in matlab. i have no linear equation of x,y. i have only above array of x and y. if value of x is 4 then what is the value of y.
is it possible using logic?
  댓글 수: 4
vipul utsav
vipul utsav 2012년 11월 29일
'interp1' this is inbuilt function ,so i just want logic behind it

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

채택된 답변

Matt Fig
Matt Fig 2012년 11월 29일
x=[1 6 8 9];
y=[3 6 9 14];
interp1(x,y,4,'linear')
  댓글 수: 4
vipul utsav
vipul utsav 2012년 11월 29일
yes i read help,but for 11 inter11 doesn't work. and for 4 it is work. 11 is outside of maximum value in x.
Matt Fig
Matt Fig 2012년 11월 29일
편집: Matt Fig 2012년 11월 29일
If you read the help, you would see there is an extrapolation option. When you want to look at values outside the range, you are extrapolating. You should also know that extrapolating is usually something one does not want to do for real applications.... especially for so sparsely populated data as this!
interp1(x,y,11,'linear','extrap')
If your original question has been answered, please accept the answer.

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

추가 답변 (1개)

Jan
Jan 2012년 11월 29일
편집: Jan 2012년 11월 29일
There is an infinite number of possible values: You can e.g. define an infinite number of polynomials through these points. And there are much more functions than only polynomials.
Therefore this problem cannot be solved, when there are no further restrictions.
One workaround would be to choose 19. This is not really serious, but fast and it solves the question as good as any other value also. The choice of 19 is explained in Carl E. Liderholm: "Mathematics Made Difficult", 1972:
Each sequence of natural number can be continued by 19.

카테고리

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