disc_value {tvm} | R 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))
[Package tvm version 0.5.2 Index]