Usage
condest(A, t = min(n, 5), normA = norm(A, "1"),
silent = FALSE, quiet = TRUE)onenormest(A, t = min(n, 5), A.x, At.x, n,
silent = FALSE, quiet = silent,
iter.max = 10, eps = 4 * .Machine$double.eps)
Arguments
A
a square matrix, optional for onenormest()
, where
instead of A
, A.x
and At.x
can be specified,
see there.
t
number of columns to use in the iterations.
normA
number; (an estimate of) the 1-norm of A
, by
default norm(A, "1")
; may be replaced by an estimate. silent
logical indicating if warning and (by default)
convergence messages should be displayed.
quiet
logical indicating if convergence messages should be
displayed.
A.x, At.x
when A
is missing, these two must be given as
functions which compute A %% x
, or t(A) %% x
,
respectively.
n
== nrow(A)
, only needed when A
is not specified.
iter.max
maximal number of iterations for the 1-norm estimator.
eps
the relaive change that is deemed irrelevant.