Binary Operations#

Element-wise binary operations that operate on two arrays.

Quick Reference#

add#

nabla.add(arg0, arg1) -> 'Array'

Element-wise addition of two arrays.

div#

nabla.div(arg0, arg1) -> 'Array'

Element-wise division of two arrays.

equal#

nabla.equal(arg0, arg1) -> 'Array'

Nabla operation: equal

floordiv#

nabla.floordiv(arg0, arg1) -> 'Array'

Nabla operation: floordiv

greater_equal#

nabla.greater_equal(arg0: 'Array', arg1: 'Array') -> 'Array'

Nabla operation: greater_equal

maximum#

nabla.maximum(arg0, arg1) -> 'Array'

Element-wise maximum of two arrays.

minimum#

nabla.minimum(arg0, arg1) -> 'Array'

Element-wise minimum of two arrays.

mod#

nabla.mod(arg0, arg1) -> 'Array'

Nabla operation: mod

mul#

nabla.mul(arg0, arg1) -> 'Array'

Element-wise multiplication of two arrays.

not_equal#

nabla.not_equal(arg0, arg1) -> 'Array'

Nabla operation: not_equal

pow#

nabla.pow(arg0, arg1) -> 'Array'

Element-wise exponentiation.

sub#

nabla.sub(arg0, arg1) -> 'Array'

Element-wise subtraction of two arrays.