splineex.m

来自「matlab code for new user to design any p」· M 代码 · 共 20 行

M
20
字号


% demonstrate spline and polyint functions

clear;                                 % clear variables

min = -5;                              % range of x values
max = 5;
x = min:1:max;                         % define x values

y = sin(x);	                       % define y values

xi = min:0.1:max;                      % x values to be interpolated at
yi = spline(x,y,xi);                   % spline interpolation
yii = polyint(x,y,xi);                 % polynomial interpolation

plot (x,y,'o',xi,yi,'-',xi,yii,'-.');  % plot and compare

legend('raw data','cubic spline','poly inter');

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?