Skip to content

Latest commit

 

History

History
25 lines (20 loc) · 546 Bytes

File metadata and controls

25 lines (20 loc) · 546 Bytes
CurrentModule = MatrixAlgebraKit
CollapsedDocStrings = true

Truncations

Currently, truncations are supported through the following different methods:

notrunc
truncrank
trunctol
truncabove
truncerror

It is additionally possible to combine truncation strategies by making use of the & operator. For example, truncating to a maximal dimension 10, and discarding all values below 1e-6 would be achieved by:

maxdim = 10
tol = 1e-6
combined_trunc = truncrank(maxdim) & trunctol(tol)