This graphical function displays a time wave as an windowed oscillogram.
dynoscillo(wave, f, wd = NULL, wl = NULL, wnb = NULL, title = TRUE, ...)
an R object.
sampling frequency of wave
(in Hz). Does not need to be specified if embedded in wave
.
a numerical vector, duration of the window (in seconds)
a numerical vector, length of the window (in number of points).
a numerical vector, number of windows (no unit).
a logical, if TRUE
displays a title with information regarding window size and number.
other plot
graphical parameters.
The arguments wd
, wl
and wn
have to be used isolated, not in conjunction. They basically do the same, ie they set the duration of the zooming window that is slided along the signal. For instance, for a 5 seconds sound with a sampling rate (f
) at 44.1 kHz, wl = 4096
is equivalent to wd = 4096 / 44100 = 0.093 s
and equivalent to wnb = 5*4096 / 44100 = 53
.
# NOT RUN {
require(rpanel)
data(tico)
dynoscillo(tico, wn=4)
# }
Run the code above in your browser using DataLab