trait LogarithmTrait (View source)

Methods

static NdArray|int|float
log(NdArray|array|int|float $m, int|float $base = M_E)

Natural logarithm, element-wise.

static NdArray|int|float
log10(NdArray|array|int|float $m)

Base 10 logarithm, element-wise.

static NdArray|int|float
log2(NdArray|array|int|float $m)

Base 2 logarithm, element-wise.

Details

final static NdArray|int|float log(NdArray|array|int|float $m, int|float $base = M_E)

Natural logarithm, element-wise.

Parameters

NdArray|array|int|float $m
int|float $base

Return Value

NdArray|int|float

final static NdArray|int|float log10(NdArray|array|int|float $m)

Base 10 logarithm, element-wise.

Parameters

NdArray|array|int|float $m

Return Value

NdArray|int|float

final static NdArray|int|float log2(NdArray|array|int|float $m)

Base 2 logarithm, element-wise.

Parameters

NdArray|array|int|float $m

Return Value

NdArray|int|float