DimData

data class DimData(inner: IntArray, outer: IntArray)

DimData represents a dimension in a SparseFloatTensor.

Inner declares the index of an element along this dimension i.e. which index in its row is element i Outer declares the boundaries each component of the dimension i.e which range of elements in inner represent row i

See: https://eigen.tuxfamily.org/dox/group__TutorialSparse.html

Constructors

DimData
Link copied to clipboard
fun DimData(inner: IntArray, outer: IntArray)

Properties

inner
Link copied to clipboard
val inner: IntArray
outer
Link copied to clipboard
val outer: IntArray