EvaluateOddPolynomialFxP operation

Warning

This documentation refers to the Classic QDK, which has been replaced by the Modern QDK.

Please see https://aka.ms/qdk.api for the API documentation for the Modern QDK.

Namespace: Microsoft.Quantum.Arithmetic

Package: Microsoft.Quantum.Numerics

Evaluates an odd polynomial in a fixed-point representation.

operation EvaluateOddPolynomialFxP (coefficients : Double[], fpx : Microsoft.Quantum.Arithmetic.FixedPoint, result : Microsoft.Quantum.Arithmetic.FixedPoint) : Unit is Adj + Ctl

Input

coefficients : Double[]

Coefficients of the odd polynomial as a double array, i.e., the array $[a_0, a_1, ..., a_k]$ for the odd polynomial $P(x) = a_0 x + a_1 x^3 + \cdots + a_k x^{2k+1}$.

fpx : FixedPoint

Input fixed-point number for which to evaluate the polynomial.

result : FixedPoint

Output fixed-point number which will hold P(x). Must be in state $\ket{0}$ initially.

Output : Unit