Learn R Programming

TDD (version 0.1)

DeconTrace: Deconvolve Instrument Response (Single Trace)

Description

Deconvolves a discrete instrument response from a seismic trace.

Usage

DeconTrace(x, DPZ, fl = 0.05, fh = NaN, bitweight = NULL)

Arguments

Value

Deconvolved velocity trace (vector).

Details

Discrete instrument responses are specific to a given sampling rate. If the response you give has a different sample rate (given by DPZ$dt) from the trace x, you will get incorrect results.

See Also

ConvolveTrace, DeconSeis

Examples

Run this code
# Response of Guralp CMG-3T
DPZ = GetDPZ(4, 0.01)[[1]]

data(COLOC)
x = COLOC$JSTR[[1]]

DeconTrace(x, DPZ)

Run the code above in your browser using DataLab