Package space.kscience.kmath.nd4j

Types

FloatNd4jArrayField
Link copied to clipboard
class FloatNd4jArrayField(shape: IntArray) : Nd4jArrayField<Float, FloatField>
Represents NDField over Nd4jArrayStructure of Float.
IntNd4jArrayRing
Link copied to clipboard
class IntNd4jArrayRing(shape: IntArray) : Nd4jArrayRing<Int, IntRing>
Represents NDRing over Nd4jArrayIntStructure.
LongNd4jArrayRing
Link copied to clipboard
class LongNd4jArrayRing(shape: IntArray) : Nd4jArrayRing<Long, LongRing>
Represents NDRing over Nd4jArrayStructure of Long.
Nd4jArrayAlgebra
Link copied to clipboard
interface Nd4jArrayAlgebra<T, C> : NDAlgebra<T, C>
Represents NDAlgebra over Nd4jArrayAlgebra.
Nd4jArrayField
Link copied to clipboard
interface Nd4jArrayField<T, F : Field<T>> : NDField<T, F> , Nd4jArrayRing<T, F>
Represents NDField over Nd4jArrayStructure.
Nd4jArrayRing
Link copied to clipboard
interface Nd4jArrayRing<T, R : Ring<T>> : NDRing<T, R> , Nd4jArraySpace<T, R>
Represents NDRing over Nd4jArrayStructure.
Nd4jArraySpace
Link copied to clipboard
interface Nd4jArraySpace<T, S : Space<T>> : NDSpace<T, S> , Nd4jArrayAlgebra<T, S>
Represents NDSpace over Nd4jArrayStructure.
Nd4jArrayStructure
Link copied to clipboard
sealed class Nd4jArrayStructure<T> : MutableNDStructure<T>
Represents a NDStructure wrapping an INDArray object.
RealNd4jArrayField
Link copied to clipboard
class RealNd4jArrayField(shape: IntArray) : Nd4jArrayField<Double, RealField>
Represents NDField over Nd4jArrayRealStructure.

Functions

asFloatStructure
Link copied to clipboard
fun INDArray.asFloatStructure(): Nd4jArrayStructure<Float>
Wraps this INDArray to Nd4jArrayStructure.
asIntStructure
Link copied to clipboard
fun INDArray.asIntStructure(): Nd4jArrayStructure<Int>
Wraps this INDArray to Nd4jArrayStructure.
asLongStructure
Link copied to clipboard
fun INDArray.asLongStructure(): Nd4jArrayStructure<Long>
Wraps this INDArray to Nd4jArrayStructure.
asRealStructure
Link copied to clipboard
fun INDArray.asRealStructure(): Nd4jArrayStructure<Double>
Wraps this INDArray to Nd4jArrayStructure.