plus

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


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

Create a new array as the sum of this and other.