FUNCTION
deprecSumOfYears
Calculate the sum-of-years depreciation of an asset. <span align="right" style="background-color:99FF99"><strong>Excel: SYD</strong></span>
Interface
#include <codecogs/finance/accounting/deprecsumofyears.h>
using namespace Finance::Accounting;
Calculate the sum-of-years depreciation of an asset for a specified period. The following equation is used:
(1)
Example 1
#include <iostream>
#include <codecogs/finance/accounting/deprecsumofyears.h>
int main(void)
{
std::cout<<Finance::Accounting::deprecSumOfYears(30000, 7500, 10, 1);
std::cout<<std::endl;
std::cout<<Finance::Accounting::deprecSumOfYears(30000, 7500, 10, 10);
std::cout<<std::endl;
return 0;
}Output:
4090.91
409.091Parameters
cost
The initial cost of the asset.
salvage
The value at the end of the depreciation.
life
The number of periods over which the asset is being depreciated, i.e. the <em>useful life</em> of the asset.
per
The period for which to calculate the depreciation.
Returns
The depreciation of the asset.
Interactive Calculator
cost
salvage
life
per
Result
Computing…
Set a range above first to export a graph.
This function's source code is only visible to registered users — documentation and the calculator above are free to use either way. Sign in to see it.