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

DefaultShortNDArrayFactory

class DefaultShortNDArrayFactory :NumericalNDArrayFactory<Short>

Constructors

Name Summary
<init> DefaultShortNDArrayFactory()

Functions

Name Summary
createGeneric fun createGeneric(lengths:IntArray, filler: (IntArray) ->Short):DefaultShortNDArray
Generate an ND container of the requested shape without initializing its contents.
ones fun ones(vararg lengths:Int):DefaultShortNDArray
Creates a 1 initialized ND container of the requested shape
rand fun rand(vararg lengths:Int):DefaultShortNDArray
Creates a ND container of uniform 0-1 random samples
randn fun randn(vararg lengths:Int):DefaultShortNDArray
Creates a ND container of unit-normal random samples
zeros fun zeros(vararg lengths:Int):DefaultShortNDArray
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<Short>.create(vararg lengths:Int, filler: (idx:IntArray) ->Short):NDArray<Short>