Sets the the scaling in the x-coordinate.

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

Syntax

C#
public virtual double XScale { get; set; }
Visual Basic (Declaration)
Public Overridable Property XScale As Double
Visual C++
public:
virtual property double XScale {
	double get ();
	void set (double value);
}

Field Value

A double containing the scaling in the x-coordinate. The absolute value of the roots divided by XScale should be about one. XScale must be greater than 0.0.

Default: XScale=1.0.

Remarks

If no bound on the function's domain is given, the entire real line must be searched for roots. In this case the Faure sequence is scaled from (0, 1) to \left( -\infty, \infty \right) using the mapping
h(u) = \mbox{XScale} \cdot{\tan{(\pi( u - 1/2))}}
.

See Also