mirror of
https://github.com/josdejong/mathjs.git
synced 2026-01-25 15:07:57 +00:00
23 lines
730 B
JavaScript
23 lines
730 B
JavaScript
module.exports = {
|
|
'name': 'derivative',
|
|
'category': 'Algebra',
|
|
'syntax': [
|
|
'derivative(expr)',
|
|
'derivative(expr, {simplify: boolean})'
|
|
],
|
|
'description': 'Takes the derivative of an expression expressed in parser Nodes. The derivative will be taken over the supplied variable in the second parameter. If there are multiple variables in the expression, it will return a partial derivative.',
|
|
'examples': [
|
|
'derivative("2x^3")',
|
|
'derivative("2x^3", {simplify: false})',
|
|
'derivative("2x^2 + 3x + 4", "x")',
|
|
'derivative("sin(2x)", "x")',
|
|
'f = parse("x^2 + x")',
|
|
'x = parse("x")',
|
|
'df = derivative(f, x)',
|
|
'df.eval({x: 3})'
|
|
],
|
|
'seealso': [
|
|
'simplify', 'parse', 'eval'
|
|
]
|
|
};
|