Main Content

deprdv

Remaining depreciable value

Description

example

Depreciation = deprdv(Cost,Salvage,Accum) computes the remaining depreciable value for an asset.

Examples

collapse all

This example shows how to find the remaining depreciable value after six years for the cost of an asset for $13,000 with a life of 10 years. The salvage value is $1000.

Accum = depstln(13000, 1000, 10) * 6
Accum = 7200
Value = deprdv(13000, 1000, 7200)
Value = 4800

Input Arguments

collapse all

Initial value of the asset, specified as a scalar numeric.

Data Types: double

Salvage value of the asset, specified as a scalar numeric.

Data Types: double

Accumulated depreciation of the asset for prior periods, specified as a scalar numeric.

Data Types: double

Output Arguments

collapse all

Depreciation, returned as the remaining depreciable value for an asset.

Version History

Introduced before R2006a