abstract struct Number
- Number
- Value
- Object
Overview
The top-level number type.
Included Modules
- Comparable(Number)
- Steppable
Defined in:
mxnet/ndarray.crmxnet/symbol.cr
Instance Method Summary
-
#!=(other : MXNet::NDArray)
Performs element-wise not equal to (
#!=
) comparison. -
#!=(other : MXNet::Symbol)
Performs element-wise not equal to (
#!=
) comparison. -
#%(other : MXNet::NDArray)
Performs element-wise modulo.
-
#%(other : MXNet::Symbol)
Performs element-wise modulo.
-
#&(other : MXNet::NDArray)
Performs element-wise logical and (
#&
) comparison. -
#&(other : MXNet::Symbol)
Performs element-wise logical and (
#&
) comparison. -
#*(other : MXNet::NDArray)
Performs element-wise multiplication.
-
#*(other : MXNet::Symbol)
Performs element-wise multiplication.
-
#**(other : MXNet::NDArray)
Returns the result of this number raised to powers from the array, element-wise.
-
#**(other : MXNet::Symbol)
Returns the result of this number raised to powers from the array, element-wise.
-
#+(other : MXNet::NDArray)
Performs element-wise addition.
-
#+(other : MXNet::Symbol)
Performs element-wise addition.
-
#-(other : MXNet::NDArray)
Performs element-wise subtraction.
-
#-(other : MXNet::Symbol)
Performs element-wise subtraction.
-
#/(other : MXNet::NDArray)
Performs element-wise division.
-
#/(other : MXNet::Symbol)
Performs element-wise division.
-
#<(other : MXNet::NDArray)
Performs element-wise less than (
#<
) comparison. -
#<(other : MXNet::Symbol)
Performs element-wise less than (
#<
) comparison. -
#<=(other : MXNet::NDArray)
Performs element-wise less than or equal to (
#<=
) comparison. -
#<=(other : MXNet::Symbol)
Performs element-wise less than or equal to (
#<=
) comparison. -
#==(other : MXNet::NDArray)
Performs element-wise equal to (
#==
) comparison. -
#==(other : MXNet::Symbol)
Performs element-wise equal to (
#==
) comparison. -
#>(other : MXNet::NDArray)
Performs element-wise greater than (
#>
) comparison. -
#>(other : MXNet::Symbol)
Performs element-wise greater than (
#>
) comparison. -
#>=(other : MXNet::NDArray)
Performs element-wise greater than or equal to (
#>=
) comparison. -
#>=(other : MXNet::Symbol)
Performs element-wise greater than or equal to (
#>=
) comparison. -
#^(other : MXNet::NDArray)
Performs element-wise logical xor (
#^
) comparison. -
#^(other : MXNet::Symbol)
Performs element-wise logical xor (
#^
) comparison. -
#|(other : MXNet::NDArray)
Performs element-wise logical or (
#|
) comparison. -
#|(other : MXNet::Symbol)
Performs element-wise logical or (
#|
) comparison.
Instance Method Detail
Returns the result of this number raised to powers from the array, element-wise.
Returns the result of this number raised to powers from the array, element-wise.