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