Derivative(function(string), value(vector) {,order of variable})
calculate the derivative of function
関数の微分係数を求める.
Ex) deff(’Out=Fn(x,y)’, ’Out=x^2+y’);
Derivative(’Fn(x,y)’, [2, 3]);
Ex) deff(’Out=Fn(x,y,A)’, ’Out=A+x^2+y’);
Assign(’A’, 3);
Derivative(Assign(’Fn(x,y,A)’), [2, 3],2);
最終更新:2013年12月03日 20:32