Differentiating vectors of functions
Publié : mar. janv. 25, 2011 5:56 pm
Just another little thing I noticed, not very important but I think worth mentioning:
As far as I can tell, giac's function_diff() is pretty much the same as Maple's D(), which giac also supports.
Yet, function_diff([sin,cos,tan]) correctly gives
While D([sin,cos,tan]) gives
Could that be improved?
As far as I can tell, giac's function_diff() is pretty much the same as Maple's D(), which giac also supports.
Yet, function_diff([sin,cos,tan]) correctly gives
Code : Tout sélectionner
(` x`)->{
cos(` x`);
-(sin(` x`));
1+tan(` x`)^2;
}
Code : Tout sélectionner
D(['sin','cos','tan'])