spam (version 2.5-1)

diff: Lagged Differences

Description

Returns suitably lagged and iterated differences.

Usage

# diff.spam(x, lag = 1, differences = 1, ...)
# S4 method for spam
diff(x, lag = 1, differences = 1, ...)

Arguments

x

a spam matrix containing the values to be differenced.

lag

an integer indicating which lag to use.

differences

an integer indicating the order of the difference.

...

further arguments to be passed to or from methods.

Value

A spam matrix with elements similar to as.spam(diff(as.matrix(x), ...)).

See Also

diff in base, precmat.

Examples

Run this code
# NOT RUN {
# incidence matrix for a RW(3) model
D <- diff.spam(diag.spam(10), lag=1, differences=3)
 t(D)
# }
# NOT RUN {
<!-- %*%D -->
# }

Run the code above in your browser using DataLab