C 库函数 - log10()
C 语言教程
· 2019-02-23 09:13:13
描述
C 库函数 double log10(double x) 返回 x 的常用对数(基数为 10 的对数)。
声明
下面是 log10() 函数的声明。
double log10(double x)
参数
- x -- 浮点值。
返回值
该函数返回 x 的常用对数,x 的值大于 0。
实例
下面的实例演示了 log10() 函数的用法。
#include <stdio.h> #include <math.h> int main () { double x, ret; x = 10000; /* 计算 log10(10000) */ ret = log10(x); printf("log10(%lf) = %lf\n", x, ret); return(0); }
让我们编译并运行上面的程序,这将产生以下结果:
log10(10000.000000) = 4.000000
点击查看所有 C 语言教程 文章: https://www.codercto.com/courses/l/17.html
Algorithms for Image Processing and Computer Vision
Parker, J. R. / 2010-12 / 687.00元
A cookbook of algorithms for common image processing applications Thanks to advances in computer hardware and software, algorithms have been developed that support sophisticated image processing with......一起来看看 《Algorithms for Image Processing and Computer Vision》 这本书的介绍吧!