NDArrayDoubleOps
Attributes
- Graph
-
- Supertypes
-
class Objecttrait Matchableclass Any
- Self type
-
NDArrayDoubleOps.type
Members list
Extensions
Extensions
Element-wise inequality. Operands must have the same shape. If either operand is 0-d, it is treated as a scalar.
Element-wise inequality. Operands must have the same shape. If either operand is 0-d, it is treated as a scalar.
Attributes
Element-wise inequality with scalar.
Element-wise inequality with scalar.
Attributes
Element-wise multiplication (Hadamard product). Operands must have the same shape. If either operand is 0-d, it is treated as a scalar.
Element-wise multiplication (Hadamard product). Operands must have the same shape. If either operand is 0-d, it is treated as a scalar.
Attributes
Multiply every element by scalar s.
Multiply every element by scalar s.
Attributes
In-place element-wise multiplication. a must be contiguous; operands must have the same shape. If b is 0-d, every element of a is multiplied by b's scalar value.
In-place element-wise multiplication. a must be contiguous; operands must have the same shape. If b is 0-d, every element of a is multiplied by b's scalar value.
Attributes
Multiply every element by scalar s in place. a must be contiguous.
Multiply every element by scalar s in place. a must be contiguous.
Attributes
Element-wise addition. Operands must have the same shape; use broadcastTo or broadcastPair first if needed. If either operand is 0-d, it is treated as a scalar and broadcast to the other operand's shape.
Element-wise addition. Operands must have the same shape; use broadcastTo or broadcastPair first if needed. If either operand is 0-d, it is treated as a scalar and broadcast to the other operand's shape.
Attributes
Add scalar s to every element.
Add scalar s to every element.
Attributes
In-place element-wise addition. a must be contiguous; operands must have the same shape. If b is 0-d, its scalar value is added to every element of a.
In-place element-wise addition. a must be contiguous; operands must have the same shape. If b is 0-d, its scalar value is added to every element of a.
Attributes
Add scalar s to every element in place. a must be contiguous.
Add scalar s to every element in place. a must be contiguous.
Attributes
Element-wise subtraction. Operands must have the same shape. If either operand is 0-d, it is treated as a scalar.
Element-wise subtraction. Operands must have the same shape. If either operand is 0-d, it is treated as a scalar.
Attributes
Subtract scalar s from every element.
Subtract scalar s from every element.
Attributes
In-place element-wise subtraction. a must be contiguous; operands must have the same shape. If b is 0-d, its scalar value is subtracted from every element of a.
In-place element-wise subtraction. a must be contiguous; operands must have the same shape. If b is 0-d, its scalar value is subtracted from every element of a.
Attributes
Subtract scalar s from every element in place. a must be contiguous.
Subtract scalar s from every element in place. a must be contiguous.
Attributes
Element-wise division. Operands must have the same shape. If either operand is 0-d, it is treated as a scalar.
Element-wise division. Operands must have the same shape. If either operand is 0-d, it is treated as a scalar.
Attributes
Divide every element by scalar s.
Divide every element by scalar s.
Attributes
In-place element-wise division. a must be contiguous; operands must have the same shape. If b is 0-d, every element of a is divided by b's scalar value.
In-place element-wise division. a must be contiguous; operands must have the same shape. If b is 0-d, every element of a is divided by b's scalar value.
Attributes
Divide every element by scalar s in place. a must be contiguous.
Divide every element by scalar s in place. a must be contiguous.
Attributes
Element-wise less-than. Operands must have the same shape. If either operand is 0-d, it is treated as a scalar.
Element-wise less-than. Operands must have the same shape. If either operand is 0-d, it is treated as a scalar.
Attributes
Element-wise less-than scalar.
Element-wise less-than scalar.
Attributes
Element-wise less-than-or-equal. Operands must have the same shape. If either operand is 0-d, it is treated as a scalar.
Element-wise less-than-or-equal. Operands must have the same shape. If either operand is 0-d, it is treated as a scalar.
Attributes
Element-wise less-than-or-equal scalar.
Element-wise less-than-or-equal scalar.
Attributes
Element-wise equality. Operands must have the same shape. If either operand is 0-d, it is treated as a scalar.
Element-wise equality. Operands must have the same shape. If either operand is 0-d, it is treated as a scalar.
Attributes
Element-wise equality with scalar.
Element-wise equality with scalar.
Attributes
Element-wise greater-than. Operands must have the same shape. If either operand is 0-d, it is treated as a scalar.
Element-wise greater-than. Operands must have the same shape. If either operand is 0-d, it is treated as a scalar.
Attributes
Element-wise greater-than scalar.
Element-wise greater-than scalar.
Attributes
Element-wise greater-than-or-equal. Operands must have the same shape. If either operand is 0-d, it is treated as a scalar.
Element-wise greater-than-or-equal. Operands must have the same shape. If either operand is 0-d, it is treated as a scalar.
Attributes
Element-wise greater-than-or-equal scalar.
Element-wise greater-than-or-equal scalar.
Attributes
Element-wise absolute value.
Element-wise absolute value.
Attributes
Element-wise natural exponential.
Element-wise natural exponential.
Attributes
Element-wise natural logarithm.
Element-wise natural logarithm.
Attributes
Element-wise sigmoid: 1 / (1 + exp(-x)).
Element-wise sigmoid: 1 / (1 + exp(-x)).
Attributes
Scalar * NDArray[Double]: equivalent to arr * s.
Scalar * NDArray[Double]: equivalent to arr * s.
Attributes
Scalar + NDArray[Double]: equivalent to arr + s.
Scalar + NDArray[Double]: equivalent to arr + s.
Attributes
Scalar - NDArray[Double]: s - arr(i) for each element.
Scalar - NDArray[Double]: s - arr(i) for each element.