From 3aa4825440f582609f7c3f4faface46a25f60193 Mon Sep 17 00:00:00 2001 From: Valentin Boettcher Date: Fri, 10 Mar 2023 12:30:00 -0500 Subject: [PATCH] fix doc --- src/FloquetUtils.jl | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/FloquetUtils.jl b/src/FloquetUtils.jl index a84790a..dc8aad9 100644 --- a/src/FloquetUtils.jl +++ b/src/FloquetUtils.jl @@ -93,12 +93,12 @@ struct KickOperator H_F::Matrix -""" - KickOperator(U(t), H_F) + @doc """ + KickOperator(U(t), H_F::Matrix) -Return the Kick operator Given the time evolution operator `U(t)` and the Floquet Hamiltonian -`H_F`. -""" + Return the Kick operator Given the time evolution operator `U(t)` and the Floquet Hamiltonian + `H_F`. + """ function KickOperator(U, H_F::Matrix) if size(U(0)) != size(H_F) throw(DimensionMismatch("`U` and `H_F` should have the same dimension."))