UNPKG

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

14 lines (13 loc) 555 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.solveODEDocs = void 0; var solveODEDocs = exports.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'] };