Checks if the elements of one vector are equal to the corresponding elements
of another vector.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static Vector<bool> EqualToInto<T>(
Vector<T> left,
Vector<T> right,
Vector<bool> result
)
Public Shared Function EqualToInto(Of T) (
left As Vector(Of T),
right As Vector(Of T),
result As Vector(Of Boolean)
) As Vector(Of Boolean)
public:
generic<typename T>
static Vector<bool>^ EqualToInto(
Vector<T>^ left,
Vector<T>^ right,
Vector<bool>^ result
)
static member EqualToInto :
left : Vector<'T> *
right : Vector<'T> *
result : Vector<bool> -> Vector<bool>
Parameters
- left
- Type: Extreme.MathematicsVectorT
The first vector. - right
- Type: Extreme.MathematicsVectorT
The second vector. - result
- Type: Extreme.MathematicsVectorBoolean
The vector that is to hold the result. May be .
Type Parameters
- T
Return Value
Type:
VectorBooleanA boolean vector whose elements are
if the corresponding element in
left
is equal to the corresponding element in
right, and
otherwise.
Reference