首页 > 其他 > 详细

matlab hornerDemo

时间:2017-04-23 10:33:15      阅读:119      评论:0      收藏:0      [点我收藏+]
% a quick demo of Horner‘s method and its effects

clear all
close all

% first a comparison of ways to compute

x = 0.988:.0001:1.012;
y1 = x.^7-7*x.^6+21*x.^5-35*x.^4+35*x.^3-21*x.^2+7*x-1;
plot(x,y1,‘r--‘)
pause

% because this polynomial can be nicely factored ...

y2 = (x-1).^7;
plot(x,y2)
pause

% now let‘s see Horner‘s method

y3=-1+x.*(7+x.*(-21+x.*(35+x.*(-35+x.*(21+x.*(-7+x))))));
plot(x,y3)
pause

% now for the head-to-head comparison

plot(x,y1,‘r--‘,x,y3)

matlab hornerDemo

原文:http://www.cnblogs.com/wzjhoutai/p/6751737.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!