financebanking

future value schedule

Available under GPL (Free) and Commercial licence
get a GPL licence
COST (GBP)
this unit 1.80
sub units 0.00
add a commercial licence to your cart
0
viewed 1627 times and licensed 6 times
www.codecogs.com/d-ox/finance/banking/future_value_schedule.php
Controller: CodeCogs    Contact Controller

Interface

#include <codecogs/finance/banking/future_value_schedule.h>

using namespace Finance::Banking;

double future_value_schedule (double pv, double schedule[], int nper)
Evaluate the future value of an investment using a schedule of interest rates.
Click for details on using CodeCogs in ExcelReal cc_future_value_schedule (Real pv, Range schedule, Integer nper)
This function is available as a Microsoft Excel add-in.

Function Documentation

Future Value Schedule Calculator

  

Add calculator to your site or email
 
doublefuture_value_scheduledoublepv
double*schedule
intnper )
This function evaluates the future value of an investment using a schedule of compound interest rates.

References:
http://www.vni.com/products/imsl/jmsl/v30/api/com/imsl/finance/Finance.html
Example:
#include <stdio.h>
#include <codecogs/finance/banking/future_value_schedule.h>
 
int main()
{
  double principal = 10000.00;
  double schedule[] = {0.050, 0.051, 0.052, 0.053, 0.054};
  int n = 5;
 
  double d = Finance::Banking::future_value_schedule(principal, schedule, n);
  printf("After 5 years, the 10000.00 investment will have grown to %5.2f\n", d);
}
Output:
  After 5 years, the 10000.00 investment will have grown to 12884.77
Parameters:
pvis the principal value, a double.
schedule
nper
Returns:
a double, the future value.
Authors:
James Warren (May 2005)
Source Code:
Register

- To get code register with CodeCogs. Already a Member, then Login.


Last Modified: 18 Oct 07 @ 17:07     Page Rendered: 2008-05-08 14:46:11

Page Comments

  You must login to leave a messge


Valid CSS!   Valid XHTML 1.0 Transitional