

EOQH() - Economic order quantity inventory holding cost
| Type
| Field
| Description
|
| double
| dCostOrder
| Cost of placing order
|
| double
| dUnits
| Annual unit sales
|
| double
| dCostUnit
| Cost per unit
|
| double
| dEconOrder
| Economic order quantity
|
PowerBuilder Function declaration
function double EOQH(double dCostOrder, double dUnits, double dCostUnit, double dEconOrder) library "IFL16.DLL"
Visual Basic Function declaration
Declare Function EOQH lib "IFL16" (ByVal dCostOrder As Double, ByVal dUnits As Double, ByVal dCostUnit As Double, ByVal dEconOrder As Double) As Double
C/C++ Synopsis
#include "function.h"
double EOQH(double dCostOrder, double dUnits, double dCostUnit, double dEconOrder)
32 bit DLL declarations
PowerBuilder Function declaration
function double EOQH(double dCostOrder, double dUnits, double dCostUnit, double dEconOrder) library "IFL32.DLL"
Visual Basic Function declaration
Declare Function EOQH lib "IFL32" (ByVal dCostOrder As Double, ByVal dUnits As Double, ByVal dCostUnit As Double, ByVal dEconOrder As Double) As Double
C/C++ Synopsis
#include "function.h"
double EOQH(double dCostOrder, double dUnits, double dCostUnit, double dEconOrder)
Example:
| dCostOrder
| =
| 35.00
|
|
| dUnits
| =
| 15,000
|
|
| dCostUnit
| =
| 5.00
|
|
| dEconOrder
| =
| 1250
|
|