我也不知道为啥算不出来,但是做个变量代换以后是可以算的
% 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)
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!