Learn R Programming

tvm (version 0.5.2)

disc_value: Calculates the present value of a cashflow

Description

Calculates the present value of a cashflow

Usage

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

Value

The present value of the cashflow

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

Examples

Run this code
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))

Run the code above in your browser using DataLab