mathjs
Version:
Math.js is an extensive math library for JavaScript and Node.js. It features a flexible expression parser with support for symbolic computation, comes with a large set of built-in functions and constants, and offers an integrated solution to work with dif
8 lines • 428 B
JavaScript
export var solveODEDocs = {
name: 'solveODE',
category: 'Numeric',
syntax: ['solveODE(func, tspan, y0)', 'solveODE(func, tspan, y0, options)'],
description: 'Numerical Integration of Ordinary Differential Equations.',
examples: ['f(t,y) = y', 'tspan = [0, 4]', 'solveODE(f, tspan, 1)', 'solveODE(f, tspan, [1, 2])', 'solveODE(f, tspan, 1, { method:"RK23", maxStep:0.1 })'],
seealso: ['derivative', 'simplifyCore']
};