由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Mathematics版 - 能问大家几个数值分析的问题吗?
相关主题
A question in Analysis问一道题目 包子酬谢!
smallest a+b+cA math question
面试题 - 数学?学数学的同志们看过来,有事请教 (转载)
请教中学数学题请大家帮我看看这个不等式出自哪本书或者文章?
x^3 + y^3 = z^3 has no positive integer solutionarithmetic geometry
几个难度很大的极限问题(征解)围棋数学游戏:看谁笑到最后(图)
我问关于matlab 画图请问一个matlab 求ODE的特征值问题
初学matlab菜鸟求助请比较一下陶的等差质数和张的质数gap之间的异同
相关话题的讨论汇总
话题: smallest话题: disp话题: integer话题: positive话题: sprintf
进入Mathematics版参与讨论
1 (共1页)
y****e
发帖数: 1012
1
大家过年好~~有几个题目不是很清楚~
给了几段matlab程序,问题问发生了什么问题?
1.
close all
k=0;
n=100;
for delta = [.1 .01 .008 .007 .005 .003 ]
x = linspace(1-delta,1+delta,n)';
y = x.^6 - 6*x.^5 + 15*x.^4 - 20*x.^3 + 15*x.^2 - 6*x + ones(n,1);
k = k+1;
subplot(2,3,k)
plot(x,y,x,zeros(1,n))
axis([1-delta 1+delta -max(abs(y)) max(abs(y))])
end
2.
% p = smallest positive integer so 1+1/2^p = 1.
x=1; p=0; y=1; z=x+y;
while x~=z
y=y/2;
p=p+1;
z=x+y;
end
disp(sprintf('p = %2.0f is the smallest positive integer so 1+1/2^p = 1.',p
))
3.
% q = smallest positive integer so 1/2^q = 0.
x=1; q=0;
while x>0
x=x/2;
q=q+1;
end;
disp(sprintf('q = %2.0f is the smallest positive integer so 1/2^q = 0.',q))
4.
% r = smallest positive integer so 2^r = inf.
x=1; r=0;
while x~=inf
x=2*x;
r=r+1;
end
disp(sprintf('r = %2.0f is the smallest positive integer so 2^r = inf.',r))
% The Kahan example. In exact arithmetic f/e = 0/0:
5.
disp(' ')
echo on
h = 1./2.;
x = 2./3. - h;
y = 3./5. - h;
e = (x+x+x) - h;
f = (y+y+y+y+y)-h;
z = f/e;
echo off
disp(sprintf('\nz = %10.5f',z))
感觉1题说的是稳定性,随着x范围变小,y的稳定性变差
2题感觉是计算机器的精度p=53
3题q=1075=53+1023-1,感觉是计算下溢(不确定)
4题r=1024,感觉是计算指数上限U
5题完全没思路
大家帮忙看看吧~
谢谢啊~
1 (共1页)
进入Mathematics版参与讨论
相关主题
请比较一下陶的等差质数和张的质数gap之间的异同x^3 + y^3 = z^3 has no positive integer solution
Ben Green 啥时候拿菲尔兹?几个难度很大的极限问题(征解)
问一个高考数学题我问关于matlab 画图
Q. & A. With Liping Ma初学matlab菜鸟求助
A question in Analysis问一道题目 包子酬谢!
smallest a+b+cA math question
面试题 - 数学?学数学的同志们看过来,有事请教 (转载)
请教中学数学题请大家帮我看看这个不等式出自哪本书或者文章?
相关话题的讨论汇总
话题: smallest话题: disp话题: integer话题: positive话题: sprintf