- 1、本文档共61页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
matlab实用程序百例数值分析篇.doc
实例85:拉个朗日插值
h0=figure(toolbar,none,...
position,[200 50 350 450],...
name,实例85);
h1=axes(parent,h0,...
position,[0.10 0.45 0.8 0.5],...
visible,off);
x=0:0.2:2*pi;
y=sin(x);
plot(x,y)
b1=uicontrol(parent,h0,...
units,points,...
tag,b1,...
style,pushbutton,...
string,拉格朗日插值,...
backgroundcolor,[0.75 0.75 0.75],...
position,[20 60 70 20],...
callback,[...
cla,,...
strn=get(e1,string);,,...
n=str2num(strn);,,...
i=1;,,...
x=0:0.2:2*pi;,,...
for t=0:0.2:2*pi,,...
y(i)=sin(t);,,...
L(i)=lag(t,n);,,...
i=i+1;,,...
end,,...
plot(x,y,b*,x,L,r-),,...
legend(sin(x),插值函数);,,...
axis([0 7 -1.5 1.5])]);
b2=uicontrol(parent,h0,...
units,points,...
tag,b2,...
style,pushbutton,...
string,误差比较,...
backgroundcolor,[0.75 0.75 0.75],...
position,[170 60 70 20],...
callback,[...
strn=get(e1,string);,,...
n=str2num(strn);,,...
strm=get(e2,string);,,...
m=str2num(strm);,,...
dd=abs(sin(m)-lag(m,n));,,...
msgbox([误差为:,num2str(dd)],计算结果)]);
e1=uicontrol(parent,h0,...
units,points,...
tag,e1,...
style,edit,...
fontsize,12,...
string,5,...
horizontalalignment,right,...
backgroundcolor,[1 1 1],...
position,[50 100 40 20]);
e2=uicontrol(parent,h0,...
units,points,...
tag,e2,...
style,edit,...
fontsize,12,...
string,1.20,...
horizontalalignment,right,...
backgroundcolor,[1 1 1],...
position,[200 100 40 20]);
t1=uicontrol(parent,h0,...
units,points,...
tag,t1,...
style,text,...
string,阶数:,...
fontsize,12,...
backgroundcolor,[0.75 0.75 0.75],...
position,[20 100 30 20]);
t2=uicontrol(parent,h0,...
units,points,...
tag,t2,...
style,text,...
string,误差点:,...
fontsize,12,...
backgroundcolor,[0.75 0.75 0.75],...
position,[160 100 40 20]);
b3=uicontrol(parent,h0,...
您可能关注的文档
- JT3132.31990公路桥梁板式橡胶支座成品力学性能检验规则.pdf
- JT4432001液压舵机推舵油缸试验方法.pdf
- JTGG10—2006公路工程施工监理规范.doc
- JTT27.341993交通行业工人技术等级标准公路运输与公路养护汽车空调维修工.pdf
- JTT27.431993交通行业工人技术等级标准公路运输与公路养护桥梁养护工.pdf
- JTT33.131993交通行业工人技术等级标准公路工程与航务工程桥基钻孔工.pdf
- JTT33.141993交通行业工人技术等级标准公路工程与航务工程爆破工.pdf
- JTT33.271993交通行业工人技术等级标准公路工程与航务工程水泥溷凝土搅拌设备操作工.pdf
- JTT4972004乘用车悬架特性的评定指标和检测方法.pdf
- JuddOfelt理论的分析与计算.pdf
文档评论(0)