matlab复合函数求导的问题

2024年12月02日 13:46
有1个网友回答
网友(1):

syms x
>> y=x^2;
>> F=sin(y);
>> diff(y,x)

ans =

2*x

>> diff(F,x)

ans =

2*x*cos(x^2)