mirror of
https://gitlab.com/scemama/QCaml.git
synced 2024-11-07 14:43:41 +01:00
20 lines
483 B
OCaml
20 lines
483 B
OCaml
val canonical_ortho: ?thresh:float -> overlap:('a,'a) Matrix.t -> ('a,'b) Matrix.t ->
|
|
('a,'b) Matrix.t
|
|
(** Canonical orthogonalization. [overlap] is the overlap matrix {% $\mathbf{S}$ %},
|
|
and the last argument contains the vectors {% $\mathbf{C}$ %} to orthogonalize.
|
|
|
|
{%
|
|
$$
|
|
\mathbf{C_\bot} = \mathbf{C\, U\, D^{-1/2}}, \;
|
|
\mathbf{U\, D\, V^\dag} = \mathbf{S}
|
|
$$
|
|
%}
|
|
|
|
*)
|
|
|
|
|
|
val qr_ortho: ('a,'b) Matrix.t -> ('a,'b) Matrix.t
|
|
(** QR orthogonalization of the input matrix *)
|
|
|
|
|