api / koma.internal.default.generated.ndarray / DefaultLongNDArrayFactory

DefaultLongNDArrayFactory

class DefaultLongNDArrayFactory :NumericalNDArrayFactory<Long>

Constructors

Name Summary
<init> DefaultLongNDArrayFactory()

Functions

Name Summary
createGeneric fun createGeneric(lengths:IntArray, filler: (IntArray) ->Long):DefaultLongNDArray
Generate an ND container of the requested shape without initializing its contents.
ones fun ones(vararg lengths:Int):DefaultLongNDArray
Creates a 1 initialized ND container of the requested shape
rand fun rand(vararg lengths:Int):DefaultLongNDArray
Creates a ND container of uniform 0-1 random samples
randn fun randn(vararg lengths:Int):DefaultLongNDArray
Creates a ND container of unit-normal random samples
zeros fun zeros(vararg lengths:Int):DefaultLongNDArray
Generate a zero initialized ND container of the requested shape

Extension Functions

Name Summary
create fun <T>GenericNDArrayFactory<T>.create(vararg lengths:Int, filler: (idx:IntArray) ->T):DefaultGenericNDArray<T>
funNumericalNDArrayFactory<Long>.create(vararg lengths:Int, filler: (idx:IntArray) ->Long):NDArray<Long>