Constructs a UserBasisRegression object.

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

Syntax

C#
public UserBasisRegression(
	IRegressionBasis basis,
	int nBasis,
	bool hasIntercept
)
Visual Basic (Declaration)
Public Sub New ( _
	basis As IRegressionBasis, _
	nBasis As Integer, _
	hasIntercept As Boolean _
)
Visual C++
public:
UserBasisRegression(
	IRegressionBasis^ basis, 
	int nBasis, 
	bool hasIntercept
)

Parameters

basis
Type: Imsl.Stat..::.IRegressionBasis
A IRegressionBasis basis function supplied by the user.
nBasis
Type: System..::.Int32
A int which specifies the number of basis functions.
hasIntercept
Type: System..::.Boolean
A bool which specifies whether or not the model has an intercept.

See Also