|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?我要加入
x
在matlab中,如何设置边界条件,默认的是什么边界条件,当进行外插值的时候,如何判断拟合曲线走向,上升还是下降,(当最后两个点不相等的时候比较好判断,但是当点相等的时候如何判断?)
请高手指点谢谢
clc
clear
close all
t = 0:3:18;
tt=length(t);
p=[10 6 10 6 10 1 16];
pp=length(p);
x =0:0.1:20;
p2=[8 10 10 10 10 10 10];
y2= interp1(t,p2,x,'spline');
figure;
plot(x,y2,'k-',t,p2,'o');
xlabel('{\itx}','FontSize',10.5,'FontName','Times New Roman');
ylabel('{\ity}','FontSize',10.5,'FontName','Times New Roman');
title('a=0','FontSize',10.5,'FontName','Times New Roman');
grid on;
p3=[10 8 10 10 10 10 10];
y3= interp1(t,p3,x,'spline');
figure;
plot(x,y3,'k-',t,p3,'o');
xlabel('{\itx}','FontSize',10.5,'FontName','Times New Roman');
ylabel('{\ity}','FontSize',10.5,'FontName','Times New Roman');
title('a=0','FontSize',10.5,'FontName','Times New Roman');
grid on; |
|