> 数学 >
用Matlab 求参数方程 x=ln(根号下(1+t^2));y=arctan(t) 所确定的函数的一阶导数和二阶导数
人气:410 ℃ 时间:2019-09-20 05:17:38
解答
syms t
x=log(sqrt(1+t^2));
y=atan(t);
% 一阶导数
Dyx1 = diff(y,t)/diff(x,t)
% 二阶导数
Dyx2 = diff(Dyx1,t)/diff(x,t)
结果:
Dyx1 = 1/t
Dyx2 = -(t^2 + 1)/t^3
推荐
猜你喜欢
© 2024 79432.Com All Rights Reserved.
电脑版|手机版