confusion regarding interp1 command?

조회 수: 1 (최근 30일)
ABTJ
ABTJ 2020년 6월 27일
댓글: Star Strider 2020년 6월 28일
I am trying to watch difference between cubic interpolation and spline interpolation using matlab plot but i am getting same plots in both cases using interp1 command
My code is below. In below code ,if i use spline in place of cubic, i still exactly get same plot,why?
clc
clear all
close all
x = 0:pi/4:2*pi;
v = sin(x);
xq = 0:pi/16:2*pi;
vq2 = interp1(x,v,xq,'cubic');
plot(x,v,'o',xq,vq2,':.');

채택된 답변

Star Strider
Star Strider 2020년 6월 27일
The two methods do not produce exactly the same results, however with respect to the amplitude of the values in the plot, they only appear to be the same.
Do this experiment to see how they differ:
x = 0:pi/4:2*pi;
v = sin(x);
xq = 0:pi/16:2*pi;
vq1 = interp1(x,v,xq,'spline');
vq2 = interp1(x,v,xq,'cubic');
plot(x,v,'o',xq,vq2,':.');
difvct = vq1-vq2;
figure
plot(xq, difvct)
grid
.
  댓글 수: 2
ABTJ
ABTJ 2020년 6월 28일
so which type of interpolation is better?spline or cubic?
Star Strider
Star Strider 2020년 6월 28일
It likely does not matter. They are almost the same, nowever not actually the same. That was the oint of my post.
I usually use 'pchip' if I want something other than 'linear'.

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

추가 답변 (0개)

카테고리

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

제품


릴리스

R2015a

Community Treasure Hunt

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

Start Hunting!

Translated by