Returns the depreciation of an asset using the double-declining
balance method.
Namespace: Imsl.FinanceAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntaxpublic static double Ddb(
double cost,
double salvage,
int life,
int period,
double factor
)
Public Shared Function Ddb (
cost As Double,
salvage As Double,
life As Integer,
period As Integer,
factor As Double
) As Double
public:
static double Ddb(
double cost,
double salvage,
int life,
int period,
double factor
)
static member Ddb :
cost : float *
salvage : float *
life : int *
period : int *
factor : float -> float
Parameters
- cost
- Type: SystemDouble
A double which specifies the initial cost of the asset.
- salvage
- Type: SystemDouble
A double which specifies the salvage value of the asset.
- life
- Type: SystemInt32
A int which specifies the number of periods over which the
asset is being depreciated.
- period
- Type: SystemInt32
A int which specifies the period.
- factor
- Type: SystemDouble
A double which specifies the rate at which the balance
declines.
Return Value
Type:
Double
A
double which specifies the depreciation of an asset for a
specified period.
Remarks
It is computed using the following:
See Also