Mathematical Functions#

add(x1, x2, *xi)

Return an element-wise addition on the given symbols.

logical_and(x1, x2)

Return an element-wise logical AND on the given symbols.

logical_or(x1, x2)

Return an element-wise logical OR on the given symbols.

maximum(x1, x2, *xi)

Return an element-wise maximum of the given symbols.

minimum(x1, x2, *xi)

Return an element-wise minimum of the given symbols.

multiply(x1, x2, *xi)

Return an element-wise multiplication on the given symbols.