Creates a model term that represents a polynomial
in the specified term.
Namespace:
Extreme.DataAnalysis.Models
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static ModelTerm Polynomial(
ModelTerm term,
int degree
)
Public Shared Function Polynomial (
term As ModelTerm,
degree As Integer
) As ModelTerm
public:
static ModelTerm^ Polynomial(
ModelTerm^ term,
int degree
)
static member Polynomial :
term : ModelTerm *
degree : int -> ModelTerm
Parameters
- term
- Type: Extreme.DataAnalysis.ModelsModelTerm
A term. - degree
- Type: SystemInt32
The degree of the polynomial.
Return Value
Type:
ModelTermA polynomial term.
Reference