L'oggetto di per la matematica � un oggetto incorporato dello scritto del Java che include i costanti e le funzioni di per la matematica. Non dovete generare un oggetto di per la matematica in scritto del Java; esiste automaticamente in tutto il programma dello scritto del Java. Le propriet� dell'oggetto di per la matematica rappresentano i costanti matematici ed i relativi metodi sono funzioni matematiche.
Valori matematici
Nel Javascript ci sono otto valori matematici (costanti) che possono essere raggiunti dall'oggetto di per la matematica. Questi sono: E, pi, una radice quadrata di 2, una radice quadrata di 1/2, un ceppo naturale di 2, un ceppo naturale di 10, ceppo base-2 della E e ceppo base-10 del E.
Propriet�
Properties
Description
E
The constant of E, the base of natural logarithms.
LN2
The natural logarithm of 2.
LN10
The natural logarithm of 10.
LOG2E
Base 2 logarithm of E.
LOG10E
Base 10 logarithm of E.
PI
Returns PI.
SQRT1_2
Square root of 1/2.
SQRT2
Square root of 2.
Metodi
Methods
Description
abs(x)
Returns absolute value of x.
acos(x)
Returns arc cosine of x in radians.
asin(x)
Returns arc sine of x in radians.
atan(x)
Returns arc tan of x in radians.
atan2(y, x)
Counterclockwise angle between x axis and point
(x,y).
ceil(x)
Returns the smallest integer greater than or
equal to x. (round up).
cos(x)
Returns cosine of x, where x is in radians.
exp(x)
Returns ex
floor(x)
Returns the largest
integer less than or equal to x. (round down)
log(x)
Returns the natural
logarithm (base E) of x.
max(a, b)
Returns the larger of a and b.
min(a, b)
Returns the lesser of a and b.
pow(x, y)
Returns Xy
random()
Returns a pseudorandom number between 0 and 1.
round(x)
Rounds x up or down to the nearest integer. It
rounds .5 up.