Skip to contents

Element-wise base-10 logarithm. You can also use log10().

Usage

nv_log10(operand)

Arguments

operand

(arrayish)
Operand.

Value

arrayish
Has the same shape and data type as the input.

See also

Examples

x <- nv_array(c(1, 10, 100, 1000))
nv_log10(x)
#> AnvlArray
#>  0
#>  1
#>  2
#>  3
#> [ CPUf32{4} ]