Compare the values in a double array with values in a double column and see if they match.
Namespace: Altaxo.Serialization.GalacticAssembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public static bool ValuesMatch(
double[] values,
DoubleColumn col
)
Parameters
- values Double
- An array of double values.
- col DoubleColumn
- 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