Click or drag to resize

MasterCurveCreationGetMinMaxOfFirstColumnForValidSecondColumn Method

Gets the minimum and maximum valid values from the first column for rows where both transformed columns contain finite values.

Namespace: Altaxo.Data.Obsolete
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public static bool GetMinMaxOfFirstColumnForValidSecondColumn(
	DoubleColumn x,
	DoubleColumn y,
	bool doLogX,
	bool doLogY,
	out double min,
	out double max
)

Parameters

x  DoubleColumn
The first column.
y  DoubleColumn
The second column.
doLogX  Boolean
Whether to logarithmize the values of x before evaluation.
doLogY  Boolean
Whether to logarithmize the values of y before evaluation.
min  Double
Receives the minimum valid value from x.
max  Double
Receives the maximum valid value from x.

Return Value

Boolean
if at least one valid pair was found; otherwise, .
See Also