mirror of
https://github.com/vale981/Looping.jl
synced 2025-03-04 17:01:39 -05:00
fix doc
This commit is contained in:
parent
f0e20e9758
commit
3aa4825440
1 changed files with 5 additions and 5 deletions
|
@ -93,12 +93,12 @@ struct KickOperator
|
||||||
H_F::Matrix
|
H_F::Matrix
|
||||||
|
|
||||||
|
|
||||||
"""
|
@doc """
|
||||||
KickOperator(U(t), H_F)
|
KickOperator(U(t), H_F::Matrix)
|
||||||
|
|
||||||
Return the Kick operator Given the time evolution operator `U(t)` and the Floquet Hamiltonian
|
Return the Kick operator Given the time evolution operator `U(t)` and the Floquet Hamiltonian
|
||||||
`H_F`.
|
`H_F`.
|
||||||
"""
|
"""
|
||||||
function KickOperator(U, H_F::Matrix)
|
function KickOperator(U, H_F::Matrix)
|
||||||
if size(U(0)) != size(H_F)
|
if size(U(0)) != size(H_F)
|
||||||
throw(DimensionMismatch("`U` and `H_F` should have the same dimension."))
|
throw(DimensionMismatch("`U` and `H_F` should have the same dimension."))
|
||||||
|
|
Loading…
Add table
Reference in a new issue