

SIP() - Simple Interest based Principal
| Type
| Field
| Description
|
| double
| dAmount
| Principal plus interest
|
| double
| dInt
| Periodic interest percentage
|
| integer
| iPeriods
| Number of periods
|
PowerBuilder Function declaration
function double SIP(double dAmount, double dInt, integer iPeriods) library "IFL16.DLL"
Visual Basic Function declaration
Declare Function SIP lib "IFL16" (ByVal dAmount As Double, ByVal dInt As Double, ByVal iPeriods As Integer) As Double
C/C++ Synopsis
#include "function.h"
double SIP(double dAmount, double dInt, int iPeriods)
32-bit DLL declarations
PowerBuilder Function declaration
function double SIP(double dAmount, double dInt, integer iPeriods) library "IFL32.DLL"
Visual Basic Function declaration
Declare Function SIP lib "IFL32" (ByVal dAmount As double, ByVal dInt As Double, ByVal iPeriods As Integer) As Double
C/C++ Synopsis
#include "function.h"
double SIP(double dAmount, double dInt, short sPeriods)
Example:
| dAmount
| =
| 184
|
|
| dInt
| =
| .07
| 7%
|
| iPeriods
| =
| 12
|
|