disc_value: Calculates the present value of a cashflow

View source: R/CurveFuncs.R

disc_valueR Documentation

Calculates the present value of a cashflow

Description

Calculates the present value of a cashflow

Usage

disc_value(r, cf, d = 1:length(cf))

Arguments

r

A rate curve

cf

The vector of values corresponding to the cashflow

d

The periods on which the cashflow occurs. If missing, it is assumed that cf[i] occurs on period i

Value

The present value of the cashflow

Examples

r <- rate_curve(rates = c(0.1, 0.2, 0.3), rate_type = "zero_eff")
disc_value(r, cf = c(-1, 1.10), d = c(0,1))
disc_value(r, cf = c(-1, 1.15*1.15), d = c(0,2))


tvm documentation built on Aug. 30, 2023, 5:19 p.m.