Skip to contents

Uncalibrate a Radiocarbon Date

Usage

c14_uncalibrate(object, ...)

# S4 method for numeric
c14_uncalibrate(object, curves = "intcal20")

# S4 method for CalibratedAges
c14_uncalibrate(object, ...)

Arguments

object

A CalibratedAges object or a numeric vector of calibrated ages (BP).

...

Currently not used.

curves

description

See also

Other radiocarbon tools: F14C, c14_calibrate(), c14_combine(), c14_curve(), c14_ensemble(), c14_plot, c14_spd(), rec_plot

Author

N. Frerebeau

Examples

if (FALSE) {
## Calibrate multiple dates
cal <- c14_calibrate(
  ages = c(5000, 4500),
  errors = c(45, 35),
  names = c("X", "Y")
)

## Uncalibrate
c14_uncalibrate(cal)
}