frequency_domain_noise_operator

Graph.frequency_domain_noise_operator(control_hamiltonian, noise_operator, frequencies, sample_count=100, projection_operator=None, *, name=None)

Create a control-frame noise operator in the frequency domain for a control Hamiltonian and a noise operator at the given frequencies.

Parameters

  • control_hamiltonian (Pwc) – The control Hamiltonian Hc(t)H_\mathrm{c}(t)
  • noise_operator (Pwc) – The noise operator N(t)N(t)
  • frequencies (list or tuple or np.ndarray) – The elements in the frequency domain at which to return the values of the filter function.
  • sample_count (int or None , optional) – The number of points in time, MM
  • projection_operator (np.ndarray or None , optional) – The projection operator PP
  • name (str or None , optional) – The name of the node.

Returns

The noise operator in the frequency domain.

Return type

Tensor

SEE ALSO

Graph.filter_function : The filter function.

Notes

The control-frame noise operator in the frequency domain is defined as the Fourier transform of the operator in the time domain 1:

\mathcal{F} \left\\{ \tilde N^\prime(t) \right\\}(f) = \int_0^\tau e^{-i 2\pi f t} \tilde N^\prime(t) \mathrm{d}t,

where

N~(t)=N~(t)Tr(PN~(t)P)Tr(P)I \tilde N^\prime(t) = \tilde N(t) - \frac{\mathrm{Tr}\left( P \tilde N(t) P \right)}{\mathrm{Tr}(P)} \mathbb{I}

is the traceless control-frame noise operator in the time domain,

N~(t)=Uc(t)N(t)Uc(t) \tilde N(t) = U_c^\dagger(t) N(t) U_c(t)

is the control-frame noise operator in the time domain, and Uc(t)U_c(t)

\mathcal{F} \left\\{ \tilde N^\prime(t) \right\\}(f) \approx \sum_{n=0}^{M-1} \frac{\tau}{M} e^{-i 2\pi f n \tau/M} \langle \tilde N^\prime (n\tau/M) \rangle,

where τ\tau

References

[1] H. Ball, M. J. Biercuk, A. R. R. Carvalho, J. Chen, M. Hush, L. A. De Castro, L. Li, P. J. Liebermann, H. J. Slatyer, and C. Edmunds, Quantum Sci. Technol. 6, 044011 (2021).

Was this useful?