Sets the bias values at the data points.

Namespace: Imsl.Math
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.0.0

Syntax

C#
public virtual void SetBias(
	double[] bias
)
Visual Basic (Declaration)
Public Overridable Sub SetBias ( _
	bias As Double() _
)
Visual C++
public:
virtual void SetBias(
	array<double>^ bias
)

Parameters

bias
Type: array< System..::.Double >[]()[]
A double array of length xData.Length which contains bias values in the interval [-1,1]. For each point, if the bias value is zero, the left and right side tangents are equally weighted. If the value is near +1, the left-side tangent dominates. If the value is near -1, the right side tangent dominates.

Default: All values of bias are zero.

See Also