Skip to contents

Element-wise operation that converts every element to its logarithm. This operation preserves the shape of the data (scalar, vector, or matrix) but changes each value to its logarithm with the specified base. See the Julia documentation for details.

Usage

Log(base = exp(1), eps = 0, ...)

Arguments

base

Base of the logarithm (default is e ≈ 2.718)

eps

Small value added to avoid log(0) (default is 0)

...

Additional arguments needed to support usage of pipe operator

Value

A query operation object that can be used in a query sequence