Equana

Back to NDArray Operations

ediv

Element-wise division (./). Always element-wise regardless of shape.

Syntax

ediv(a: NDArray, b: NDArray) → r

Backends

TypeScriptnumwa

Description

Element-wise division (./). Always element-wise regardless of shape.

Parameters

NameDescription
aNumerator (NDArray or scalar)
bDenominator (NDArray or scalar)

Returns

NDArray with element-wise quotient

Examples

Try It
>> ediv([10, 20], [2, 5])
[5, 4]