Vector<T>.Dot Less Operator
Definition
Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
Overload List
Dot | Checks if the elements of one vector are less than a constant. |
Dot | Checks if the elements of one vector are less than a constant. |
Dot | Checks if the elements of one vector are less than the corresponding elements of another vector. |
DotLess(T, Vector<T>) Operator
Checks if the elements of one vector are less than a constant.
Parameters
Return Value
Vector<Boolean>A boolean vector whose elements are true if left is less than the corresponding element in right, and false otherwise.
Exceptions
Argument | right is null. |
DotLess(Vector<T>, T) Operator
Checks if the elements of one vector are less than a constant.
Parameters
Return Value
Vector<Boolean>A boolean vector whose elements are true if the corresponding element in left is less than right, and false otherwise.
Exceptions
Argument | left is null. |
DotLess(Vector<T>, Vector<T>) Operator
Checks if the elements of one vector are less than 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 less than 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. |