View source: R/transform_spectra.R
resample | R Documentation |
resample
returns spectra resampled to new bands using spline smoothing.
Possible to increase or decrease the spectral resolution.
resample(x, new_bands, ...) ## S3 method for class 'spectra' resample(x, new_bands, ...)
x |
spectra object. bands must be strictly increasing |
new_bands |
numeric vector of bands to sample from spectra |
... |
additional parameters passed to the |
resample
doesn't predict values for bands outside of the original range.
spectra object with resampled spectra
resample(spectra)
: Resample spectra
Jose Eduardo Meireles
library(spectrolab) spec = as_spectra(spec_matrix_example, name_idx = 1) spec = resample(spec, new_bands = seq(400, 2400, 0.5), parallel = FALSE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.