dq.solver.Expm
Expm()
Explicit matrix exponentiation to compute propagators.
Explicitly batch-compute the propagators for all time intervals in tsave
. These
propagators are then iteratively applied:
- starting from the initial state for
dq.sesolve()
anddq.mesolve()
, to compute states for all times intsave
, - starting from the identity matrix for
dq.sepropagator()
anddq.mepropagator()
, to compute propagators for all times intsave
.
For the SchrΓΆdinger equation with constant Hamiltonian , the propagator from time to time is an matrix given by
For the Lindblad master equation with constant Liouvillian , the problem is vectorized and the propagator from time to time is an matrix given by
Warning
This solver is not recommended for open systems of large dimension, due to the scaling of computing the Liouvillian exponential.
Warning
This solver only supports constant or piecewise constant Hamiltonian and jump operators.
Supported gradients
This solver supports differentiation with
dq.gradient.Autograd
(default).