Click or drag to resize

VectorMathAreValuesEqual(IReadOnlyListDouble, IReadOnlyListDouble) Method

Returns true if and only if both vectors contain the same elements. Both vectors must have the same length.

Namespace: Altaxo.Calc.LinearAlgebra
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static bool AreValuesEqual(
	IReadOnlyList<double> vector1,
	IReadOnlyList<double> vector2
)

Parameters

vector1  IReadOnlyListDouble
First vector.
vector2  IReadOnlyListDouble
Second vector.

Return Value

Boolean
True if both vectors contain the same elements.
See Also