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
and a QuantumVariable in state this method acts as:- 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
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
Finally we apply the inverse Fourier transformation and measure:
>>> QFT(qf, inv = True) >>> print(qf) {4: 1.0}