genrick | R Documentation |
Generate a ricker wavelet of a specfied frequency and length
genrick(freq, dt, nw)
freq |
frequency of ricker wavelet |
dt |
Time sample rate (s) |
nw |
length of wavelet. |
ricker wavelet as a vector.
Original code by Leonard Lisapaly (leonardl@fisika.ui.ac.id), converted to R by J.M. Lees.
Jonathan M. Lees<jonathan.lees@unc.edu>
dt <- 0.01
freq <- 16
nlen <- 35
G <- genrick(freq, dt, nlen)
tee <- seq(from=0, by=dt, length=length(G))
plot(tee, G, type='l')
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.