limit求极限时出现的问题。
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
新锦江娱乐注册官方【微8785092】
le 20 Mai 2023
Réponse apportée : 新锦江娱乐网址多少【微8785092】
le 20 Mai 2023
>> syms x
>> f=(2/pi*atan(x))^x;
>> limit(f,x,inf,'right')
错误使用 symengine
Inconsistent limit direction.
出错 sym/limit (第 62 行)
rSym = mupadmex('symobj::map', args{1}.s, 'symobj::limit', args{2}.s, args{3}.s, dir);
>> limit(f,x,inf)
ans =
Inf
应该怎么解决“?各位大神
0 commentaires
Réponse acceptée
新锦江娱乐网址多少【微8785092】
le 20 Mai 2023
我也不知道为啥算不出来,但是做个变量代换以后是可以算的
% y = 1 - 2 / pi * atan( x ); % 换元,x 趋于 ∞ 时,y 趋于 0
% x = tan( pi/2 - pi/2 * y ); % 换元关系式
f = ( 1 - y ) .^ ( tan( pi/2 - pi/2 * y ) )
limit( f, y, 0 )
算出来极限为 exp(-2/pi)
0 commentaires
Plus de réponses (0)
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!