This allows estimating the one-norm of matrix powers A^m and matrix products A1 * A2 * ... * Am without having to explicitly perform the m matrix multiplications. Instead, per loop there are two times m multiplications of the n x n matrices A with a t x m matrix. For small values of t this can prove significantly faster.
This allows estimating the one-norm of matrix powers
A^m
and matrix productsA1 * A2 * ... * Am
without having to explicitly perform them
matrix multiplications. Instead, per loop there are two timesm
multiplications of then x n
matrices A with at x m
matrix. For small values oft
this can prove significantly faster.