Populates the model input group using the specified
matrix.
Namespace:
Extreme.DataAnalysis.Models
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public void Populate(
Matrix<double> values,
bool noIntercept = true,
string prefix = null
)
Public Sub Populate (
values As Matrix(Of Double),
Optional noIntercept As Boolean = true,
Optional prefix As String = Nothing
)
public:
void Populate(
Matrix<double>^ values,
bool noIntercept = true,
String^ prefix = nullptr
)
member Populate :
values : Matrix<float> *
?noIntercept : bool *
?prefix : string
(* Defaults:
let _noIntercept = defaultArg noIntercept true
let _prefix = defaultArg prefix null
*)
-> unit
Parameters
- values
- Type: Extreme.MathematicsMatrixDouble
A real matrix. - noIntercept (Optional)
- Type: SystemBoolean
Indicates whether a constant term should be
included in the group. - prefix (Optional)
- Type: SystemString
The prefix to use when generating names for the variables.
Reference