R/auxiliary_spectral_envelope.R

Defines functions auxiliary_spectral_envelope

auxiliary_spectral_envelope <- function(binarized_series, plot = TRUE) {

  if (plot == FALSE) {

    return(astsa::specenv(binarized_series, plot = plot))

  } else {

    return(astsa::specenv(binarized_series, plot = plot))

  }

}

Try the ctsfeatures package in your browser

Any scripts or data that you put into this service are public.

ctsfeatures documentation built on May 29, 2024, 11:37 a.m.