Attributes
Members list
Value members
Concrete methods
abs(x + du) ~= x + du or -(x + du)
abs(x + du) ~= x + du or -(x + du)
Attributes
acos(a + du) ~= acos(a) - 1 / sqrt(1 - a**2) du
acos(a + du) ~= acos(a) - 1 / sqrt(1 - a**2) du
Attributes
asin(a + du) ~= asin(a) - 1 / sqrt(1 - a**2) du
asin(a + du) ~= asin(a) - 1 / sqrt(1 - a**2) du
Attributes
atan(a + du) ~= atan(a) + 1 / (1 + a**2) du
atan(a + du) ~= atan(a) + 1 / (1 + a**2) du
Attributes
Defined with "this" as the y coordinate:
Defined with "this" as the y coordinate:
this.atan2(a) == atan2(this, a) == atan(this / a) atan2(b + dv, a + du) ~= atan2(b, a) + (- b du + a dv) / (a^2 + b^2)
Attributes
Attributes
- Definition Classes
-
ScalaNumericAnyConversions -> Number
cos(a + du) ~= cos(a) - sin(a) du
cos(a + du) ~= cos(a) - sin(a) du
Attributes
cosh(a + du) ~= cosh(a) + sinh(a) du
cosh(a + du) ~= cosh(a) + sinh(a) du
Attributes
Attributes
- Definition Classes
-
ScalaNumericAnyConversions -> Number
Compares the receiver object (this
) with the argument object (that
) for equivalence.
Compares the receiver object (this
) with the argument object (that
) for equivalence.
Any implementation of this method should be an equivalence relation:
- It is reflexive: for any instance
x
of typeAny
,x.equals(x)
should returntrue
. - It is symmetric: for any instances
x
andy
of typeAny
,x.equals(y)
should returntrue
if and only ify.equals(x)
returnstrue
. - It is transitive: for any instances
x
,y
, andz
of typeAny
ifx.equals(y)
returnstrue
andy.equals(z)
returnstrue
, thenx.equals(z)
should returntrue
.
If you override this method, you should verify that your implementation remains an equivalence relation. Additionally, when overriding this method it is usually necessary to override hashCode
to ensure that objects which are "equal" (o1.equals(o2)
returns true
) hash to the same scala.Int. (o1.hashCode.equals(o2.hashCode)
).
Value parameters
- that
-
the object to compare against this object for equality.
Attributes
- Returns
-
true
if the receiver object is equivalent to the argument;false
otherwise. - Definition Classes
-
Equals -> Any
exp(a + du) ~= exp(a) + exp(a) du
exp(a + du) ~= exp(a) + exp(a) du
Attributes
Attributes
- Definition Classes
-
ScalaNumericAnyConversions -> Number
Calculates a hash code value for the object.
Calculates a hash code value for the object.
The default hashing algorithm is platform dependent.
Note that it is allowed for two objects to have identical hash codes (o1.hashCode.equals(o2.hashCode)
) yet not be equal (o1.equals(o2)
returns false
). A degenerate implementation could always return 0
. However, it is required that if two objects are equal (o1.equals(o2)
returns true
) that they have identical hash codes (o1.hashCode.equals(o2.hashCode)
). Therefore, when overriding this method, be sure to verify that the behavior is consistent with the equals
method.
Attributes
- Returns
-
the hash code value for this object.
- Definition Classes
-
Any
Attributes
- Definition Classes
-
ScalaNumericAnyConversions -> Number
Attributes
- Definition Classes
-
ScalaNumericAnyConversions
Attributes
- Definition Classes
-
ScalaNumericAnyConversions -> ScalaNumber
log(a + du) ~= log(a) + du / a
log(a + du) ~= log(a) + du / a
Attributes
Attributes
- Definition Classes
-
ScalaNumericAnyConversions -> Number
pow -- base (this) is a differentiable function, exponent is a constant.
pow -- base (this) is a differentiable function, exponent is a constant.
pow(a + du, p) ~= pow(a, p) + p * pow(a, p-1) du
Attributes
pow -- both base (this) and exponent are differentiable functions.
pow -- both base (this) and exponent are differentiable functions.
(a + du)^(b + dv) ~= a^b + b * a^(b-1) du + a^b log(a) dv
Attributes
Attributes
- Definition Classes
-
ScalaNumericAnyConversions -> Number
This is consistent with abs
This is consistent with abs
Attributes
sin(a + du) ~= sin(a) + cos(a) du
sin(a + du) ~= sin(a) + cos(a) du
Attributes
sinh(a + du) ~= sinh(a) + cosh(a) du
sinh(a + du) ~= sinh(a) + cosh(a) du
Attributes
sqrt(a + du) ~= sqrt(a) + du / (2 sqrt(a))
sqrt(a + du) ~= sqrt(a) + du / (2 sqrt(a))
Attributes
tan(a + du) ~= tan(a) + (1 + tan(a)**2) du
tan(a + du) ~= tan(a) + (1 + tan(a)**2) du
Attributes
tanh(a + du) ~= tanh(a) + (1 - tanh(a)**2) du
tanh(a + du) ~= tanh(a) + (1 - tanh(a)**2) du
Attributes
Attributes
- Definition Classes
-
ScalaNumericConversions -> ScalaNumber
Inherited methods
Attributes
- Inherited from:
- ScalaNumericAnyConversions
Attributes
- Inherited from:
- ScalaNumericAnyConversions
Attributes
- Inherited from:
- ScalaNumericAnyConversions
Attributes
- Inherited from:
- Product
Attributes
- Inherited from:
- Product
Attributes
- Inherited from:
- ScalaNumericAnyConversions
Attributes
- Inherited from:
- ScalaNumericAnyConversions
Attributes
- Inherited from:
- ScalaNumericAnyConversions
Attributes
- Inherited from:
- ScalaNumericAnyConversions
Attributes
- Inherited from:
- ScalaNumericAnyConversions
Attributes
- Inherited from:
- ScalaNumericAnyConversions
Attributes
- Inherited from:
- ScalaNumericAnyConversions
Attributes
- Inherited from:
- ScalaNumericAnyConversions
Attributes
- Inherited from:
- ScalaNumericAnyConversions