log10¶
Result = log10(expression)
- expression
spatial, non spatial scalar
- Result
dimension of expression scalar
Operation¶
For each cell, calculates the 10 logarithm of the cell value on expression and assigns it to the corresponding cell on Result.
Notes¶
The cell values on expression must be greater than 0. Any cell value outside this range is assigned a missing value on Result. A cell with missing value on expression is assigned a missing value on Result.
Group¶
This operation belongs to the group of Arithmetic operators
Examples¶
- • pcrcalcbindingResult = Result.map;Expr = Expr.map;initialreport Result = log10(Expr);• pythonExpr = readmap(“Expr.map”)Result = log10(Expr)
Result.map
Expr.map