

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