目录
简介
函数
log()
Arguments:
Returns: Image
log10()
Arguments:
Returns: Image
abs()
Arguments:
Returns: Image
代码
结果
简介
GEE 训练教程——计算输入值的自然对数和10进制的对数log和log10的使用
* 使用自然数或欧拉数(e = 2.718282)对图像值进行对数变换。
* 注意:图像像素值 <=0.0 是未定义的。通常会添加一个正值常数,以确保所有值都大于 0。
函数
log()
Computes the natural logarithm of the input.
计算输入值的自然对数。
Arguments:
this:value (Image):
The image to which the operation is applied.
Returns: Image
log10()
Computes the base-10 logarithm of the input.
计算输入值的 10 进制对数。
Arguments:
this:value (Image):
The image to which the operation is applied.