Esempio n. 1
0
 public static E pow(E x, E y) => M.Pow(x, y);
Esempio n. 2
0
 // Trigonometric functions
 public static E sin(E x) => M.Sin(x);
Esempio n. 3
0
 public static E sqrt(E x) => M.Sqrt(x);
Esempio n. 4
0
 public static E root(E x, E y) => M.Root(x, y);
Esempio n. 5
0
 public static E exp(E x) => M.Exp(x);
Esempio n. 6
0
 public static E ln(E x) => M.Ln(x);
Esempio n. 7
0
 public static E var(string name) => M.Var(name);
Esempio n. 8
0
 public static E n(ushort value) => M.N(value);
Esempio n. 9
0
 public static E n(double value) => M.N(value);
Esempio n. 10
0
 public static E n(decimal value) => M.N(value);
Esempio n. 11
0
 public static E n(float value) => M.N(value);
Esempio n. 12
0
 public static E n(ulong value) => M.N(value);
Esempio n. 13
0
 public static E n(uint value) => M.N(value);
Esempio n. 14
0
 public static E cos(E x) => M.Cos(x);
Esempio n. 15
0
 // Mathematic functions
 public static E abs(E x) => M.Abs(x);
Esempio n. 16
0
 public static E tan(E x) => M.Tan(x);
Esempio n. 17
0
 public static E n(byte value) => M.N(value);