Vector<T>.Dot Greater Equals Operator
Definition
Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
Overload List
Dot | Checks if the elements of one vector are greater than or equal to a constant. |
Dot | Checks if the elements of one vector are greater than or equal to a constant. |
Dot | Checks if the elements of one vector are greater than or equal to the corresponding elements of another vector. |
DotGreaterEquals(T, Vector<T>) Operator
Checks if the elements of one vector are greater than or equal to a constant.
Parameters
Return Value
Vector<Boolean>A boolean vector whose elements are true if left is greater than or equal to the corresponding element in right, and false otherwise.
Exceptions
Argument | right is null |
DotGreaterEquals(Vector<T>, T) Operator
Checks if the elements of one vector are greater than or equal to a constant.
Parameters
Return Value
Vector<Boolean>A boolean vector whose elements are true if the corresponding element in left is greater than or equal to right, and false otherwise.
Exceptions
Argument | left is null |
DotGreaterEquals(Vector<T>, Vector<T>) Operator
Checks if the elements of one vector are greater than or equal to the corresponding elements
of another vector.
Parameters
Return Value
Vector<Boolean>A boolean vector whose elements are true if the corresponding element in left is greater than or equal to the corresponding element in right, and false otherwise.
Exceptions
Argument | left is null -or- right is null |
Dimension | left and right do not have the same length. |