天软金融分析.NET函数大全
>
TSL函数
>
数学函数
>
财务函数
SLNDepreciation
复制链接
简述
返回根据直线折旧法计算的每期折旧额。类似地,计算现值加速折旧法折旧的函数是SYDDepreciation。计算方法是用资产原值Cost减去资产残值Salvage的差除以折旧周期数Life
定义
SLNDepreciation(Cost; Salvage: Real; Life: Integer): Real;
参数
名称
类型
说明
Cost
Real
实数,资产原值
Salvage
Real
实数,资产残值
Life
Integer
整数,设备的使用期数
范例
return SLNDepreciation(20000,2000,5);
//结果:3600
//第一年应提折旧额=(20000-2000)/5=3600
//第二年应提折旧额=(20000-2000)/5=3600
//第三年应提折旧额=(20000-2000)/5=3600
//第四年应提折旧额=(20000-2000)/5=3600
//第五年应提折旧额=(20000-2000)/5=3600
结果:1800
参考
简单函数对数组支持
DoubleDecliningBalance
FutureValue
InterestPayment
InterestRate
InternalRateOfReturn
NumberOfPeriods
NetPresentValue
Payment
PeriodPayment
PresentValue
SYDDepreciation
相关
DoubleDecliningBalance
FutureValue
InterestPayment
InterestRate
InternalRateOfReturn
NumberOfPeriods
NetPresentValue
Payment
PeriodPayment
PresentValue
SLNDepreciation
SYDDepreciation