PrincetonInstrumentsSPEImporterValuesMatch Method |
Compare the values in a double array with values in a double column and see if they match.
Namespace: Altaxo.Serialization.PrincetonInstrumentsAssembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3261.0 (4.8.3261.0)
Syntax 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
BooleanTrue 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