div

operator fun <D : Dimension> Byte.div(other: MultiArray<Byte, D>): NDArray<Byte, D>
operator fun <D : Dimension> Short.div(other: MultiArray<Short, D>): NDArray<Short, D>
operator fun <D : Dimension> Int.div(other: MultiArray<Int, D>): NDArray<Int, D>
operator fun <D : Dimension> Long.div(other: MultiArray<Long, D>): NDArray<Long, D>
operator fun <D : Dimension> Float.div(other: MultiArray<Float, D>): NDArray<Float, D>
operator fun <D : Dimension> Double.div(other: MultiArray<Double, D>): NDArray<Double, D>
operator fun <D : Dimension> ComplexFloat.div(other: MultiArray<ComplexFloat, D>): NDArray<ComplexFloat, D>
operator fun <D : Dimension> ComplexDouble.div(other: MultiArray<ComplexDouble, D>): NDArray<ComplexDouble, D>
operator fun <T, D : Dimension> MultiArray<T, D>.div(other: T): NDArray<T, D>


operator fun <T, D : Dimension> MultiArray<T, D>.div(other: MultiArray<T, D>): NDArray<T, D>

Create a new array as division of this by other.