SimdPoly5n(Vector256Double, Double, Double, Double, Double, Double) Method
Calculates x⁵+c₄x⁴+c₃x³+c₂x²+c₁x+c₀.
Namespace: Austra.Library.HelpersAssembly: Austra.Library (in Austra.Library.dll) Version: 2.5.0+44e7797405725ef3cf24b3ff0eba94ce6c649601
public static Vector256<double> Poly5n(
this Vector256<double> x,
double c0,
double c1,
double c2,
double c3,
double c4
)
- x Vector256Double
- The real variable used for evaluation.
- c0 Double
- The constant term.
- c1 Double
- The linear term.
- c2 Double
- The quadratic term.
- c3 Double
- The cubic term.
- c4 Double
- The quartic term.
Vector256DoubleThe evaluation of the polynomial at the given point.In Visual Basic and C#, you can call this method as an instance method on any object of type
Vector256Double. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
It is assumed that the quintic term is one.