Vector.Equal To Method
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
Equal | Checks if the elements of one vector are equal to a constant. |
Equal | Checks if the elements of one vector are equal to the corresponding elements of another vector. |
Equal | Checks if the elements of one vector are equal to a constant. |
EqualTo<T>(Vector<T>, T)
Checks if the elements of one vector are equal to a constant.
public static Vector<bool> EqualTo<T>(
Vector<T> left,
T right
)
Parameters
- left Vector<T>
- A vector.
- right T
- A constant.
Type Parameters
- T
Return Value
Vector<Boolean>A boolean vector whose elements are true if the corresponding element in left is equal to right, and false otherwise.
Exceptions
Argument | left is null. |
EqualTo<T>(Vector<T>, Vector<T>)
Checks if the elements of one vector are equal to the corresponding elements
of another vector.
public static Vector<bool> EqualTo<T>(
Vector<T> left,
Vector<T> right
)
Parameters
Type Parameters
- T
Return Value
Vector<Boolean>A boolean vector whose elements are true if the corresponding element in left is 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. |
EqualTo<T>(T, Vector<T>)
Checks if the elements of one vector are equal to a constant.
public static Vector<bool> EqualTo<T>(
T left,
Vector<T> right
)
Parameters
- left T
- A constant.
- right Vector<T>
- A vector.
Type Parameters
- T
Return Value
Vector<Boolean>A boolean vector whose elements are true if left is equal to the corresponding element in right, and false otherwise.
Exceptions
Argument | right is null. |