exp

@JvmName(name = "expTD")
fun <T : Number, D : Dimension> MultiArray<T, D>.exp(): NDArray<Double, D>

Returns an ndarray of Double from the given ndarray to each element of which an exp function has been applied.

same as Math.exp


@JvmName(name = "expFloatD")
fun <D : Dimension> MultiArray<Float, D>.exp(): NDArray<Float, D>

Returns an ndarray of Float from the given ndarray to each element of which an exp function has been applied.

same as Math.exp


@JvmName(name = "expComplexFloatD")
fun <D : Dimension> MultiArray<ComplexFloat, D>.exp(): NDArray<ComplexFloat, D>

Returns an ndarray of ComplexFloat from the given ndarray to each element of which an exp function has been applied.

same as Math.exp


@JvmName(name = "expComplexDoubleD")
fun <D : Dimension> MultiArray<ComplexDouble, D>.exp(): NDArray<ComplexDouble, D>

Returns an ndarray of ComplexDouble from the given ndarray to each element of which an exp function has been applied.

same as Math.exp


@JvmName(name = "exp")
fun <T : Number, D : Dimension> Math.exp(a: MultiArray<T, D>): NDArray<Double, D>

Returns a ndarray of Double from the given ndarray to each element of which an exp function has been applied.


@JvmName(name = "expFloat")
fun <D : Dimension> Math.exp(a: MultiArray<Float, D>): NDArray<Float, D>

Returns a ndarray of Float from the given ndarray to each element of which an exp function has been applied.


@JvmName(name = "expComplexFloat")
fun <D : Dimension> Math.exp(a: MultiArray<ComplexFloat, D>): NDArray<ComplexFloat, D>

Returns a ndarray of ComplexFloat from the given ndarray to each element of which an exp function has been applied.


@JvmName(name = "expComplexDouble")
fun <D : Dimension> Math.exp(a: MultiArray<ComplexDouble, D>): NDArray<ComplexDouble, D>

Returns a ndarray of ComplexDouble from the given ndarray to each element of which an exp function has been applied.