简单对数系统

Posted

tags:

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

  1. <?php
  2.  
  3.  
  4. function wlog($m=""){
  5. $myFile = "/tmp/shib.log"; #log path
  6. $fh = fopen($myFile, 'a') or die("can't open file");
  7. $stringData = $m." ";
  8.  
  9. if($m==""){$stringData = " ";};
  10. fwrite($fh, $stringData);
  11. fclose($fh);
  12. };
  13.  
  14.  
  15. /* Usage :
  16.  
  17. wlog("Write this to log...");
  18. wlog();
  19. wlog("New line...");
  20.  
  21. ----
  22.  
  23. System usage:
  24.  
  25. tail -f /tmp/shib.log
  26.  
  27.  
  28.  
  29. */
  30.  
  31. ?>

以上是关于简单对数系统的主要内容,如果未能解决你的问题,请参考以下文章

简单枚举-------计算对数

金融时间序列分析用R语言画简单收益率和对数收益率的ACF图?!

对数间隔的整数

对数器的使用

[ML]简单的Normal Equation对数据点进行线性回归

使用 Qwt 绘制半对数图