Module Lacaml.Complex_io

module Complex_io: sig .. end
Pretty printing of complex vector and matrices. See the Lacaml.Io module for more versatile functions.

val pp_num : Format.formatter -> Complex.t -> unit
pp_num ppf el is equivalent to fprintf ppf "(%G, %Gi)" el.re el.im.
val pp_vec : (Complex.t, 'a) Lacaml.Io.pp_vec
Pretty-printer for column vectors.
val pp_mat : (Complex.t, 'a) Lacaml.Io.pp_mat
Pretty-printer for matrices.