perd_get: Compute the Periodogram of Multivariate Time Series

View source: R/cepstral.R

perd_getR Documentation

Compute the Periodogram of Multivariate Time Series

Description

This function computes the periodogram for each time series in the input matrix.

Usage

perd_get(Y)

Arguments

Y

A numeric matrix of dimension T x N, where each column is a univariate time series.

Value

A numeric matrix of dimension N x L, where each row is the periodogram of a time series.

Examples

set.seed(123)
Y <- matrix(rnorm(20), ncol = 4)
perd <- perd_get(Y)


CepReg documentation built on Sept. 10, 2025, 10:38 a.m.

Related to perd_get in CepReg...