Click or drag to resize

PrincetonInstrumentsSPEImporterValuesMatch Method

Compare the values in a double array with values in a double column and see if they match.

Namespace: Altaxo.Serialization.PrincetonInstruments
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3261.0 (4.8.3261.0)
Syntax
C#
public static bool ValuesMatch(
	IReadOnlyList<double> values,
	IReadOnlyList<double> col
)

Parameters

values  IReadOnlyListDouble
An array of double values.
col  IReadOnlyListDouble
A double column to compare with the double array.

Return Value

Boolean
True if the length of the array is equal to the length of the DoubleColumn and the values in both array match to each other, otherwise false.
See Also