SimdPoly5(Vector512`1Double, Double, Double, Double, Double, Double, Double) Method |
Calculates c₅xx⁵+c₄xx⁴+c₃xx³+c₂xx²+c₁xx+c₀.
Namespace: Austra.Library.HelpersAssembly: Austra.Library (in Austra.Library.dll) Version: 2.8.0+b570ba3d92ac41b220335369b9c16f94769fe16b
Syntaxpublic static Vector512<double> Poly5(
this Vector512<double> x,
double c0,
double c1,
double c2,
double c3,
double c4,
double c5
)
Parameters
- x Vector512Double
- A double vector with eight elements.
- 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.
Return Value
Vector512DoubleThe evaluation of the polynomial at the given point.
Usage Note
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).
See Also