PHP log10() 函数
PHP 教程
· 2019-01-27 06:27:18
实例
返回不同数的以 10 为底的对数:
<?php
echo(log10(2.7183) . "<br>");
echo(log10(2) . "<br>");
echo(log10(1) . "<br>");
echo(log10(0));
?>
echo(log10(2.7183) . "<br>");
echo(log10(2) . "<br>");
echo(log10(1) . "<br>");
echo(log10(0));
?>
定义和用法
log10() 函数返回一个数的以 10 为底的对数。
语法
log10(number);
| 参数 | 描述 |
|---|---|
| number | 必需。规定需计算对数的值。 |
技术细节
| 返回值: | number 的以 10 为底的对数。 |
|---|---|
| 返回类型: | Float |
| PHP 版本: | 4+ |
点击查看所有 PHP 教程 文章: https://codercto.com/courses/l/5.html
Programming Computer Vision with Python
Jan Erik Solem / O'Reilly Media / 2012-6-22 / USD 39.99
If you want a basic understanding of computer vision's underlying theory and algorithms, this hands-on introduction is the ideal place to start. As a student, researcher, hacker, or enthusiast, you'll......一起来看看 《Programming Computer Vision with Python》 这本书的介绍吧!