123

Posted ww01

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了123相关的知识,希望对你有一定的参考价值。

https://support.office.com/zh-cn/article/irr-%E5%87%BD%E6%95%B0-64925eaa-9988-495b-b290-3ad0c163c1bc

https://docs.microsoft.com/zh-cn/office/vba/language/reference/user-interface-help/irr-function?f1url=https%3A%2F%2Fmsdn.microsoft.com%2Fquery%2Fdev11.query%3FappId%3DDev11IDEF1%26l%3Dzh-CN%26k%3Dk(vblr6.chm1009282)%3Bk(TargetFrameworkMoniker-Office.Version%3Dv15)%26rd%3Dtrue

 

var [] 来计算

找js的实现

function IRR(cashFlows, estimatedResult)   
  var result = "isNAN";  
  if (cashFlows != null && cashFlows.length > 0)   
      // check if business startup costs is not zero:  
      if (cashFlows[0] != 0)   
          var noOfCashFlows = cashFlows.length;  
          var sumCashFlows = 0;  
          // check if at least 1 positive and 1 negative cash flow exists:  
          var noOfNegativeCashFlows = 0;  
          var noOfPositiveCashFlows = 0;  
          for (var i = 0; i < noOfCashFlows; i++)   
              sumCashFlows += cashFlows[i];  
              if (cashFlows[i] > 0)   
                  noOfPositiveCashFlows++;  
               else   
                  if (cashFlows[i] < 0)   
                      noOfNegativeCashFlows++;  
                    
                
            

          // at least 1 negative and 1 positive cash flow available?  
          if (noOfNegativeCashFlows > 0 && noOfPositiveCashFlows > 0)   
              // set estimated result:  
              var irrGuess = 0.1; // default: 10%  
              if (!isNaN(estimatedResult))   
                  irrGuess = estimatedResult;  
                  if (irrGuess <= 0)   
                      irrGuess = 0.5;  
                    
                

              // initialize first IRR with estimated result:  
              var irr = 0;  
              if (sumCashFlows < 0)  // sum of cash flows negative?  
                  irr = -irrGuess;  
               else  // sum of cash flows not negative  
                  irr = irrGuess;  
                

              // iteration:  
              // the smaller the distance, the smaller the interpolation  
              // error  
              var minDistance = 1e-15;  

              // business startup costs  
              var cashFlowStart = cashFlows[0];  
              var maxIteration = 100;  
              var wasHi = false;  
              var cashValue = 0;  
              for (var i = 0; i <= maxIteration; i++)   
                  // calculate cash value with current irr:  
                  cashValue = cashFlowStart; // init with startup costs  

                  // for each cash flow  
                  for (var j = 1; j < noOfCashFlows; j++)   
                      cashValue += cashFlows[j] / Math.pow(1 + irr, j);  
                    

                  // cash value is nearly zero  
                  if (Math.abs(cashValue) < 0.01)   
                      result = irr;  
                      break;  
                    

                  // adjust irr for next iteration:  
                  // cash value > 0 => next irr > current irr  
                  if (cashValue > 0)   
                      if (wasHi)   
                          irrGuess /= 2;  
                        
                      irr += irrGuess;  
                      if (wasHi)   
                          irrGuess -= minDistance;  
                          wasHi = false;  
                        
                   else // cash value < 0 => next irr < current irr  
                      irrGuess /= 2;  
                      irr -= irrGuess;  
                      wasHi = true;  
                    

                  // estimated result too small to continue => end  
                  // calculation  
                  if (irrGuess <= minDistance)   
                      result = irr;  
                      break;  
                    
                
            
        
    
  return result;  
  

 

以上是关于123的主要内容,如果未能解决你的问题,请参考以下文章

[Go] 通过 17 个简短代码片段,切底弄懂 channel 基础

如何在 Javadoc 中使用 @ 和 符号格式化代码片段?

Regexp_substr 将字符串解析成片段

使片段标识符与基一起工作

Wordpress阻止访问wp admin€“wpsnipp.com网站你博客的Wordpress代码片段

Android 逆向Linux 文件权限 ( Linux 权限简介 | 系统权限 | 用户权限 | 匿名用户权限 | 读 | 写 | 执行 | 更改组 | 更改用户 | 粘滞 )(代码片段