Main Content

fvfix

Future value with fixed periodic payments

Description

example

FutureVal = fvfix(Rate,NumPeriods,Payment) returns the future value of a series of equal payments.

example

FutureVal = fvfix(___,PresentVal,Due) specifies options using one or more optional argument in addition to the input arguments in the previous syntax.

Examples

collapse all

This example shows how to compute the future value of a series of equal payments using a savings account that has a starting balance of $1500. $200 is added at the end of each month for 10 years and the account pays 9% interest compounded monthly.

FutureVal = fvfix(0.09/12, 12*10, 200, 1500, 0)
FutureVal = 4.2380e+04

Input Arguments

collapse all

Interest-rate per period, specified as a scalar numeric decimal.

Data Types: double

Number of payment periods, specified as a scalar numeric.

Data Types: double

Payment per period, specified as a scalar numeric.

Data Types: double

(Optional) Present value, specified as a scalar numeric.

Data Types: double

(Optional) When payments are due, specified as a scalar integer with value of 0 (end of period) or 1 (beginning of period).

Data Types: double

Output Arguments

collapse all

Future value of a series of equal payments, returned as a scalar numeric.

References

[1] Jan Mayle. Standard Securities Calculation Methods. Securities Industry Assn, Volumes I-II, 3rd edition, 1994

Version History

Introduced before R2006a