UNPKG

703 BMarkdownView Raw
1<!-- Note: This file is automatically generated from source code comments. Changes made in this file will be overridden. -->
2
3# Function help
4
5Retrieve help on a function or data type.
6Help files are retrieved from the embedded documentation in math.docs.
7
8
9## Syntax
10
11```js
12math.help(search)
13```
14
15### Parameters
16
17Parameter | Type | Description
18--------- | ---- | -----------
19`search` | Function &#124; string &#124; Object | A function or function name for which to get help
20
21### Returns
22
23Type | Description
24---- | -----------
25Help | A help object
26
27
28## Examples
29
30```js
31console.log(math.help('sin').toString())
32console.log(math.help(math.add).toString())
33console.log(math.help(math.add).toJSON())
34```
35
36