qrisp.QuantumVariable.app_phase_function#

QuantumVariable.app_phase_function(phi)[source]#

Applies a previously specified phase function to each computational basis state of the QuantumVariable using Gray-Synthesis.

For a given phase function ϕ(x) and a QuantumVariable in state |ψ=xLabelsax|x this method acts as:

UϕxLabelsax|x=xLabelsexp(iϕ(x))ax|x
Parameters:
phiPython function

A Python function which turns the labels of the QuantumVariable into floats.

Examples

We create a QuantumFloat and encode the k-th basis state of the Fourier basis. Finally, we will apply an inverse Fourier transformation to measure k in the computational basis.

>>> import numpy as np
>>> from qrisp import QuantumFloat, h, QFT
>>> n = 5
>>> qf = QuantumFloat(n, signed = False)
>>> h(qf)

After this, qf is in the state

|qf=12nx=02n|x

We specify phi

>>> k = 4
>>> def phi(x):
>>>     return 2*np.pi*x*k/2**n

And apply phi as a phase function

>>> qf.app_phase_function(phi)

qf is now in the state

|qf=12nx=02nexp(2πikx2n)|x

Finally we apply the inverse Fourier transformation and measure:

>>> QFT(qf, inv = True)
>>> print(qf)
{4: 1.0}