-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathops.json
47 lines (47 loc) · 1.19 KB
/
ops.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
{
"binary": {
"/": "x / y",
"*": "x * y",
"+": "x + y",
"-": "x - y",
"pow": "x**y",
"pow_abs": "Abs(x) ** y"
},
"unary": {
"abs": "Abs",
"mod": "sympy.Mod(x, 2)",
"erf": "sympy.erf",
"erfc": "sympy.erfc",
"log": "sympy.log(x)",
"log10": "sympy.log(x, 10)",
"log2": "sympy.log(x, 2)",
"log1p": "sympy.log(x + 1)",
"log_abs": "sympy.log(Abs(x))",
"log10_abs": "sympy.log(Abs(x), 10)",
"log2_abs": "sympy.log(Abs(x), 2)",
"log1p_abs": "sympy.log(Abs(x) + 1)",
"floor": "sympy.floor",
"ceil": "sympy.ceiling",
"sqrt": "sympy.sqrt(x)",
"sqrt_abs": "sympy.sqrt(Abs(x))",
"square": "x**2",
"cube": "x**3",
"neg": "-x",
"cos": "sympy.cos",
"sin": "sympy.sin",
"tan": "sympy.tan",
"cosh": "sympy.cosh",
"sinh": "sympy.sinh",
"tanh": "sympy.tanh",
"exp": "sympy.exp",
"acos": "sympy.acos",
"asin": "sympy.asin",
"atan": "sympy.atan",
"acosh": "sympy.acosh(x)",
"acosh_abs": "sympy.acosh(Abs(x) + 1)",
"asinh": "sympy.asinh",
"atanh": "sympy.atanh(sympy.Mod(x + 1, 2) - 1)",
"atanh_clip": "sympy.atanh(sympy.Mod(x + 1, 2) - 1)",
"sign": "sympy.sign"
}
}