Simd.Poly4(Vector512`1<Double>, Double, Double, Double, Double, Double) Method
Calculates 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> Poly4(
this Vector512<double> x,
double c0,
double c1,
double c2,
double c3,
double c4
)
- x Vector512<Double>
- 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.
Vector512<Double>The 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
Vector512<Double>. 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).