mirror of
https://github.com/josdejong/mathjs.git
synced 2026-01-18 14:59:29 +00:00
19 lines
400 B
JavaScript
19 lines
400 B
JavaScript
/**
|
|
* mathjs constants
|
|
*/
|
|
math.E = Math.E;
|
|
math.LN2 = Math.LN2;
|
|
math.LN10 = Math.LN10;
|
|
math.LOG2E = Math.LOG2E;
|
|
math.LOG10E = Math.LOG10E;
|
|
math.PI = Math.PI;
|
|
math.SQRT1_2 = Math.SQRT1_2;
|
|
math.SQRT2 = Math.SQRT2;
|
|
|
|
math.I = new Complex(0, 1);
|
|
|
|
// lower case constants
|
|
math.pi = math.PI;
|
|
math.e = math.E;
|
|
math.i = math.I;
|