| Name | Description |
---|
  | Addition(T, VectorT) |
Adds a vector and a constant.
|
  | Addition(VectorT, T) |
Adds a vector and a constant.
|
  | Addition(VectorT, VectorT) |
Adds two vectors.
|
  | AdditionAssignment(VectorT, T) |
Defines the compound addition assignment operator for a vector and a scalar in F#.
|
  | AdditionAssignment(VectorT, VectorT) |
Defines the compound addition assignment operator for vectors in F#.
|
  | Division |
Divides a vector by a constant.
|
  | DivisionAssignment |
Defines the compound division assignment operator for a vector and a scalar in F#.
|
  | DotDivide |
Defines the element-wise division operator for vectors in F#.
|
  | DotDivideAssignment |
Defines the element-wise division compound assignment operator for vectors in F#.
|
  | DotEquals(T, VectorT) |
Checks if the elements of one vector are equal to a constant.
|
  | DotEquals(VectorT, T) |
Checks if the elements of one vector are equal to a constant.
|
  | DotEquals(VectorT, VectorT) |
Checks if the elements of one vector are equal to the corresponding elements
of another vector.
|
  | DotGreater(T, VectorT) |
Checks if the elements of one vector are greater than a constant.
|
  | DotGreater(VectorT, T) |
Checks if the elements of one vector are greater than a constant.
|
  | DotGreater(VectorT, VectorT) |
Checks if the elements of one vector are greater than the corresponding elements
of another vector.
|
  | DotGreaterEquals(T, VectorT) |
Checks if the elements of one vector are greater than or equal to a constant.
|
  | DotGreaterEquals(VectorT, T) |
Checks if the elements of one vector are greater than or equal to a constant.
|
  | DotGreaterEquals(VectorT, VectorT) |
Checks if the elements of one vector are greater than or equal to the corresponding elements
of another vector.
|
  | DotLess(T, VectorT) |
Checks if the elements of one vector are less than a constant.
|
  | DotLess(VectorT, T) |
Checks if the elements of one vector are less than a constant.
|
  | DotLess(VectorT, VectorT) |
Checks if the elements of one vector are less than the corresponding elements
of another vector.
|
  | DotLessEquals(T, VectorT) |
Checks if the elements of one vector are less than or equal to a constant.
|
  | DotLessEquals(VectorT, T) |
Checks if the elements of one vector are less than or equal to a constant.
|
  | DotLessEquals(VectorT, VectorT) |
Checks if the elements of one vector are less than or equal to the corresponding elements
of another vector.
|
  | DotLessGreater(T, VectorT) |
Checks if the elements of one vector are not equal to a constant.
|
  | DotLessGreater(VectorT, T) |
Checks if the elements of one vector are not equal to a constant.
|
  | DotLessGreater(VectorT, VectorT) |
Checks if the elements of one vector are not equal to the corresponding elements
of another vector.
|
  | DotMultiply |
Defines the element-wise multiplication operator for vectors in F#.
|
  | DotMultiplyAssignment |
Defines the element-wise multiplication compound assignment operator for vectors in F#.
|
  | DotMultiplyMultiply(VectorT, T) |
Defines the element-wise exponentiation operator for matrices in F#.
|
  | DotMultiplyMultiply(VectorT, VectorT) |
Defines the componentwise exponentiation operator for matrices in F#.
|
  | DotMultiplyMultiply(VectorT, VectorInt32) |
Defines the componentwise exponentiation operator for matrices in F#.
|
  | DotMultiplyMultiply(VectorT, Int32) |
Defines the componentwise exponentiation operator for matrices in F#.
|
  | Equality |
Returns a value indicating whether two instances
of vector are equal.
|
  | (T to VectorT) |
Implicitly converts an array of T
to a VectorT.
|
  | Inequality |
Returns a value indicating whether two instances
of vector are not equal.
|
  | Multiply(T, VectorT) |
Multiplies a vector by a constant.
|
  | Multiply(VectorT, T) |
Multiplies a vector by a constant.
|
  | MultiplyAssignment |
Defines the compound multiplication assignment operator for a vector and a scalar in F#.
|
  | Subtraction(T, VectorT) |
Subtracts a vector from a constant.
|
  | Subtraction(VectorT, T) |
Subtracts a constant from a vector.
|
  | Subtraction(VectorT, VectorT) |
Subtracts two vectors.
|
  | SubtractionAssignment(VectorT, T) |
Defines the compound subtraction assignment operator for a vector and a scalar in F#.
|
  | SubtractionAssignment(VectorT, VectorT) |
Defines the compound subtraction assignment operator for vectors in F#.
|
  | UnaryNegation |
Negates a vector.
|