Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
|
|
@ -0,0 +1,9 @@
|
|||
Math.E; //e
|
||||
Math.PI; //pi
|
||||
Math.sqrt(u); //square root of u
|
||||
Math.log(u); //natural logarithm of u
|
||||
Math.exp(u); //e to the power of u
|
||||
Math.abs(u); //absolute value of u
|
||||
Math.floor(u);//floor of u
|
||||
Math.ceil(u); //ceiling of u
|
||||
Math.pow(u,v);//u to the power of v
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
Math.LN10; // natural logarithm of 10
|
||||
Math.LN2; // natural logarithm of 2
|
||||
Math.LOG10E; // base-10 logarithm of e
|
||||
Math.LOG2E; // base-2 logarithm of e
|
||||
Math.SQRT1_2;// square root of 1/2
|
||||
Math.SQRT2; //square root of 2
|
||||
Loading…
Add table
Add a link
Reference in a new issue