log10 函数

来源:互联网 发布:python 延时1秒 编辑:程序博客网 时间:2024/04/30 15:31

log10 函数

Common (base 10) logarithm

一般(基底10)对数

Syntax

语法

Y = log10(X)

Description

描述

The log10 function operates element-by-element on arrays. Its domain includes complex numbers, which may lead to unexpected results if used unintentionally.

Log10函数在阵列上操作element-by-element。它的区域包括复数,如果不小心使用,其可以导致意外结果如果

Y = log10(X) returns the base 10 logarithm of the elements of X.

Y=log10(X)返回X的元素的乙10为基底的对数。

Examples

例如

log10(realmax) is 308.2547

And

log10(eps) is -15.6536

原创粉丝点击