| Name | Description |
---|
  | Addition(T, MatrixT) |
Adds a matrix and a scalar.
|
  | Addition(MatrixT, T) |
Adds a matrix and a scalar.
|
  | Addition(MatrixT, MatrixT) |
Adds two matrices.
|
  | AdditionAssignment(MatrixT, T) |
Adds a constant to a matrix in place.
|
  | AdditionAssignment(MatrixT, MatrixT) |
Adds another matrix to a matrix in place.
|
  | Division |
Divides a matrix by a scalar.
|
  | DivisionAssignment |
Divides a matrix by a constant in place.
|
  | DotDivide |
Returns the element-wise quotient of two matrices.
|
  | DotDivideEquals |
Divides the elements of a matrix by the corresponding elements of another matrix.
|
  | DotEquals(T, MatrixT) |
Checks if the elements of one matrix are equal to a constant.
|
  | DotEquals(MatrixT, T) |
Checks if the elements of one matrix are equal to a constant.
|
  | DotEquals(MatrixT, MatrixT) |
Checks if the elements of one matrix are equal to the corresponding elements
of another matrix.
|
  | DotGreater(T, MatrixT) |
Checks if the elements of one matrix are greater than a constant.
|
  | DotGreater(MatrixT, T) |
Checks if the elements of one matrix are greater than a constant.
|
  | DotGreater(MatrixT, MatrixT) |
Checks if the elements of one matrix are greater than the corresponding elements
of another matrix.
|
  | DotGreaterEquals(T, MatrixT) |
Checks if the elements of one matrix are greater than or equal to a constant.
|
  | DotGreaterEquals(MatrixT, T) |
Checks if the elements of one matrix are greater than or equal to a constant.
|
  | DotGreaterEquals(MatrixT, MatrixT) |
Checks if the elements of one matrix are greater than or equal to the corresponding elements
of another matrix.
|
  | DotLess(T, MatrixT) |
Checks if the elements of one matrix are less than a constant.
|
  | DotLess(MatrixT, T) |
Checks if the elements of one matrix are less than a constant.
|
  | DotLess(MatrixT, MatrixT) |
Checks if the elements of one matrix are less than the corresponding elements
of another matrix.
|
  | DotLessEquals(T, MatrixT) |
Checks if the elements of one matrix are less than or equal to a constant.
|
  | DotLessEquals(MatrixT, T) |
Checks if the elements of one matrix are less than or equal to a constant.
|
  | DotLessEquals(MatrixT, MatrixT) |
Checks if the elements of one matrix are less than or equal to the corresponding elements
of another matrix.
|
  | DotLessGreater(T, MatrixT) |
Checks if the elements of one matrix are not equal to a constant.
|
  | DotLessGreater(MatrixT, T) |
Checks if the elements of one matrix are not equal to a constant.
|
  | DotLessGreater(MatrixT, MatrixT) |
Checks if the elements of one matrix are not equal to the corresponding elements
of another matrix.
|
  | DotMultiply |
Returns the element-wise product of two matrices.
|
  | DotMultiplyEquals |
Multiplies the elements of a matrix by the corresponding elements of another matrix.
|
  | DotMultiplyMultiply(MatrixT, T) |
Defines the element-wise exponentiation operator for matrices in F#.
|
  | DotMultiplyMultiply(MatrixT, MatrixT) |
Defines the element-wise exponentiation operator for matrices in F#.
|
  | DotMultiplyMultiply(MatrixT, Int32) |
Defines the element-wise exponentiation operator for matrices in F#.
|
  | Equality |
Returns a value indicating whether two instances
of matrix are equal.
|
  | Inequality |
Returns a value indicating whether two instances
of matrix are not equal.
|
  | Multiply(T, MatrixT) |
Multiplies a matrix by a scalar.
|
  | Multiply(MatrixT, T) |
Multiplies a matrix by a scalar.
|
  | Multiply(MatrixT, MatrixT) |
Multiplies two matrix objects.
|
  | Multiply(MatrixT, VectorT) | |
  | Multiply(VectorT, MatrixT) | |
  | MultiplyAssignment |
Multiplies a matrix by a constant in place.
|
  | Subtraction(T, MatrixT) |
Subtracts a matrix from a scalar.
|
  | Subtraction(MatrixT, T) |
Subtracts a scalar from a matrix.
|
  | Subtraction(MatrixT, MatrixT) |
Subtracts two matrices.
|
  | SubtractionAssignment(MatrixT, T) |
Subtracts a constant from a matrix in place.
|
  | SubtractionAssignment(MatrixT, MatrixT) |
Subtracts another matrix from a matrix in place.
|
  | UnaryNegation |
Negates a matrix.
|