-
Notifications
You must be signed in to change notification settings - Fork 1
/
snippets.json
58 lines (58 loc) · 1.55 KB
/
snippets.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"Integrate": {
"prefix": "integrate",
"scope": "javascript,typescript,python",
"body": [
"integrate(${1:expression}, ${2:var})"
],
"description": "Symbolic Integral with respect to `var`",
},
"Derivative": {
"prefix": "diff",
"scope": "javascript,typescript,python",
"body": [
"diff(${1:expression}, ${2:var})"
],
"description": "Symbolic Derivative with respect to `var`"
},
"Limit": {
"prefix": "limit",
"scope": "javascript,typescript,python",
"body": [
"limit(${1:expression}, ${2:var}, ${3:value})"
],
"description": "Symbolic Limit as `var` approaches `value`"
},
"series": {
"prefix": "series",
"scope": "javascript,typescript,python",
"body": [
"series(${1:expression}, ${2:var}, ${3:centerValue})"
],
"description": "Symbolic Series Expansion of the region `var` = `value` to the 6th order"
},
"Solve": {
"prefix": "solve",
"scope": "javascript,typescript,python",
"body": [
"solve(${1:expression}, ${2:var})"
],
"description": "Symbolic Solving for `var`"
},
"Extremum": {
"prefix": "extremum",
"scope": "javascript,typescript,python",
"body": [
"solve(diff(${1:expression}, ${2:var}), ${2})"
],
"description": "Symbolic Extrema with respect to `var` \nNote: Only returns the first real extremum."
},
"LaTeX": {
"prefix": "latex",
"scope": "javascript,typescript,python",
"body": [
"${1|latex,simplify|}(${2:expression})"
],
"description": "Generate LaTeX from Expressions.\nUse `Integral`, `Derivative` for unevaluated symbols."
}
}