

IRPP() - Interest rate per period
| Type
| Field
| Description
|
| double
| dInt
| Interest percentages
|
| integer
| iPer
| Number of periods
|
PowerBuilder Function declaration
function double IRPP(double dInt, int iPer) library "IFL16.DLL"
Visual Basic Function declaration
Declare Function IRPP lib "IFL16" (ByVal dInt As Double, ByVal iPer As Integer) As Double
C/C++ Synopsis
#include "function.h"
double IRPP(double dInt, int iPer)
32-bit DLL declarations
PowerBuilder Function declaration
function double IRPP(double dInt, integer iPer) library "IFL32.DLL"
Visual Basic Function declaration
Declare Function IRPP lib "IFL32" (ByVal dInt As Double, ByVal iPer As Integer) As Double
C/C++ Synopsis
#include "function.h"
double IRPP(double dInt, int iPer)
Example:
| dInt
| =
| 0.02
| (2%)
|
| iPer
| =
| 4
|
|