Log
计算数的自然对数.
Log ( expression )
参数
返回值
成功:
|
返回表达式的自然对数.
|
失败:
|
趋向于返回 -1.#IND 表达式为非正数.
|
备注
@error 总是 0
函数示例
#include <MsgBoxConstants.au3>
Example()
Func Example()
; Assign a Local variable the natural logarithm of 1000.
Local $fLog1 = Log(1000)
; Display the result.
MsgBox($MB_SYSTEMMODAL, "", $fLog1)
; Assign a Local variable the base-10 natural logarithm of 1000.
Local $fLog2 = Log10(1000)
; Display the result.
MsgBox($MB_SYSTEMMODAL, "", $fLog2)
EndFunc ;==>Example
; User-defined function for common log
Func Log10($fNb)
Return Log($fNb) / Log(10) ; 10 is the base
EndFunc ;==>Log10
----------------------------------------
该函数可以通过命令 exect 调用
参见:
Exp
Log(1000) ;; 返回6.90775527898214
exect=Log(1000) GLOBALEXECT<a> ;; 计算一个数字的自然对数(返回6.90775527898214)
© Аверин Андрей для Total Commander Image Averin-And@yandex.ru
|