Polynomial(IEnumerableDouble) Constructor |
Create a polynomial with the provided coefficients (in ascending order, where the index matches the exponent).
Example: {5, 0, 2} -> "p : x -> 5 + 0 x^1 + 2 x^2".
Namespace: Altaxo.CalcAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public Polynomial(
IEnumerable<double> coefficients
)
Parameters
- coefficients IEnumerableDouble
- Polynomial coefficients as enumerable
See Also