Returns a collection of numerical terms with keys
generated from the specified prefix.
Namespace:
Extreme.DataAnalysis.Models
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static ModelTermCollection Numerical(
int count,
string prefix,
bool noIntercept = true,
int startIndex = -1
)
Public Shared Function Numerical (
count As Integer,
prefix As String,
Optional noIntercept As Boolean = true,
Optional startIndex As Integer = -1
) As ModelTermCollection
public:
static ModelTermCollection^ Numerical(
int count,
String^ prefix,
bool noIntercept = true,
int startIndex = -1
)
static member Numerical :
count : int *
prefix : string *
?noIntercept : bool *
?startIndex : int
(* Defaults:
let _noIntercept = defaultArg noIntercept true
let _startIndex = defaultArg startIndex -1
*)
-> ModelTermCollection
Parameters
- count
- Type: SystemInt32
The number of terms in the collection. - prefix
- Type: SystemString
The prefix to use when generating keys. - noIntercept (Optional)
- Type: SystemBoolean
Indicates whether a constant term
should be included. This parameter is optional.
The default value is . - startIndex (Optional)
- Type: SystemInt32
Optional. The start index for the terms.
The default is 1 if noIntercept
is , and 0 otherwise.
Return Value
Type:
ModelTermCollectionA collection of numerical terms with the specified keys.
Reference