timedom.norms {freqdom} | R Documentation |
Compute operator norms of elements of a filter
Description
This function determines the norms of the matrices defining some linear filter.
Usage
timedom.norms(A, type = "2")
Arguments
A |
an object of class |
type |
matrix norm to be used as in |
Details
Computes for
in the set of lags belonging to the object A. When type
is
2
then is the spectral radius of
. When type is
F
then is the Frobenius norm (or the Hilbert-Schmidt norm, or Schatten 2-norm) of
. Same options as for the function
norm
as in base package.
Value
A list which contains the following components:
-
lags
a vector containing the lags of
A
. -
norms
a vector containing the norms of the matrices defining
A
.
Examples
d = 2
A = array(0,c(d,d,2))
A[1,,] = 2 * diag(d:1)/d
A[2,,] = 1.5 * diag(d:1)/d
OP = timedom(A,c(-2,1))
timedom.norms(OP)
[Package freqdom version 2.0.5 Index]