spectrum_level {tagtools}R Documentation

Compute the spectrum level of a signal x.

Description

This function is used to compute the spectrum level of a signal x.

Usage

spectrum_level(x, nfft, sampling_rate, w, nov)

Arguments

x

A vector containing the signal to be processed. For signals with multiple channels, each channel should be in a column of x.

nfft

The length of the fft to use. Choose a power of two for fastest operation. Default value is 512.

sampling_rate

The sampling rate of x in Hz. Default value is 1. sampling_rate is the vector of frequencies at which SL is calculated.

w

The window length. The default value is nfft. If w<nfft, each segment of w samples is zero-padded to nfft.

nov

The number of samples to overlap each segment. The default value is half of the window length.

Value

A list with 2 elements:

Note

The spectrum is single-sided and extends to sampling_rate/2. The reference level is 1.0 (i.e., white noise with unit variance will have a spectrum level of 3-10*log10(sampling_rate). The 3dB is because both the negative and positive spectra are added together so that the total power in the signal is the same as the total power in the spectrum.

Examples

BW <- beaked_whale
list <- spectrum_level(x = BW$P$data, nfft = 4, sampling_rate = BW$P$sampling_rate)


[Package tagtools version 0.1.0 Index]