serrsBayes (version 0.4-0)

weightedLorentzian: Compute the spectral signature using Lorentzian peaks.

Description

Calculates the value of the Lorentzian function at the given wavelengths, given the parameters of the peaks. This function is thread-safe.

Usage

weightedLorentzian(location, scale, amplitude, wavelengths)

Arguments

location

Vector of location parameters of the peaks.

scale

Vector of scale parameters of the peaks.

amplitude

Vector of amplitudes of the peaks.

wavelengths

Vector of wavenumbers at which to compute the function.

Value

The value of the Lorentian function at the given wavelengths.

Examples

Run this code
# NOT RUN {
  Cal_V <- seq(300,400,by=5)
  loc <- c(320,350,375)
  sca <- c(10,5,18)
  amp <- c(1000,5000,2000)
  weightedLorentzian(loc,sca,amp,Cal_V)
# }

Run the code above in your browser using DataCamp Workspace