Polynomial<T> Constructor
Definition
Namespace: Numerics.NET.Curves.Generic
Assembly: Numerics.NET.Generic (in Numerics.NET.Generic.dll) Version: 9.1.5
Assembly: Numerics.NET.Generic (in Numerics.NET.Generic.dll) Version: 9.1.5
Overload List
| Polynomial<T>(IList<T>) | Constructs a new polynomial with the specified coefficients. | 
| Polynomial<T>(Int32) | Constructs a new polynomial of the specified degree. | 
| Polynomial<T>(IList<T>, Boolean) | Constructs a new polynomial with the specified coefficients. | 
| Polynomial<T>(T[], Boolean) | Constructs a new polynomial with the specified coefficients. | 
Polynomial<T>(IList<T>)
            Constructs a new polynomial with the specified
            coefficients.
            
public Polynomial(
	IList<T> coefficients
)Parameters
Exceptions
| Argument | coefficients is null. | 
Polynomial<T>(Int32)
            Constructs a new polynomial of the specified degree.
            
Polynomial<T>(IList<T>, Boolean)
            Constructs a new polynomial with the specified
            coefficients.
            
public Polynomial(
	IList<T> coefficients,
	bool descendingOrder
)Parameters
Exceptions
| Argument | coefficients is null. | 
Polynomial<T>(T[], Boolean)
            Constructs a new polynomial with the specified
            coefficients.
            
public Polynomial(
	T[] coefficients,
	bool descendingOrder
)Parameters
Exceptions
| Argument | coefficients is null. |