SimdPoly5(Vector512`1Double, Double, Double, Double, Double, Double, Double) Method
Calculates c₅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 Vector512<double> Poly5(
this Vector512<double> x,
double c0,
double c1,
double c2,
double c3,
double c4,
double c5
)
- x Vector512Double
- 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.
- c5 Double
- The quintic term.
Vector512DoubleThe 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
Vector512Double. 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).