NumLibPolyValT(T, T) Method
Evaluate polynomial
Namespace: Metas.UncLib.CoreAssembly: Metas.UncLib.Core (in Metas.UncLib.Core.dll) Version: 2.8.9053.20192
public static T PolyVal<T>(
T[] p,
T x
)
where T : new(), Object, INumber<T>
Public Shared Function PolyVal(Of T As {New, Object, INumber(Of T)}) (
p As T(),
x As T
) As T
public:
generic<typename T>
where T : gcnew(), Object, INumber<T>
static T PolyVal(
array<T>^ p,
T x
)
static member PolyVal :
p : 'T[] *
x : 'T -> 'T when 'T : new() and Object and INumber<'T>
- p T
- Polynomial coefficients in descending powers
- x T
- X-Value
- T
- Number Type
TY-Value