Learn R Programming

colorSpec (version 0.5-2)

applyspec: apply a function to each spectrum in a colorSpec object

Description

apply a function to each spectrum in a colorSpec object

Usage

## S3 method for class 'colorSpec':
applyspec( x, FUN, \ldots )

Arguments

x
a colorSpec object with N wavelengths
FUN
a function that takes an N-vector as argument and returns an N-vector
...
additional arguments passed to FUN

Value

  • a colorSpec object with the same dimensions, wavelength, quantity, and organization. If FUN does not return an N-vector, it is an ERROR and applyspec returns NULL.

Details

applyspec simply calls apply with the right MARGIN.

See Also

quantity, wavelength, linearize, organization

Examples

Run this code
#  convert absorbance to transmittance
path = system.file( "extdata/stains/Hematoxylin.txt", package='colorSpec' )
x = readSpectra( path )
x = applyspec( x, function(y) {10^(-y)} ) # this is what linearize(x) does

Run the code above in your browser using DataLab