I have to write a shell script that finds the derivative of the argument.
(我必须编写一个shell脚本来查找参数的派生类。)
It should be able to work with polynomials, sin, cos, sums, differences, products, quotients....(它应该能够处理多项式,sin,cos,和,差,乘积,商...)
It should look something like this:
(它看起来应该像这样:)
$>deriv sin^2((x^2-3x-5)/4)
$>0.5*sin((x^2-3x-5)/4)*(2x-6)
I have no idea how to get started...Can you guys help me out?
(我不知道如何开始...你们可以帮我吗?)
Thanks
(谢谢)
ask by Marcell Leleszi translate from so