[][src]Struct arrow::ipc::gen::SparseTensor::SparseMatrixIndexCSX

pub struct SparseMatrixIndexCSX<'a> {
    pub _tab: Table<'a>,
}

Compressed Sparse format, that is matrix-specific.

Fields

_tab: Table<'a>

Implementations

impl<'a> SparseMatrixIndexCSX<'a>[src]

pub fn init_from_table(table: Table<'a>) -> Self[src]

pub fn create<'bldr: 'args, 'args: 'mut_bldr, 'mut_bldr>(
    _fbb: &'mut_bldr mut FlatBufferBuilder<'bldr>,
    args: &'args SparseMatrixIndexCSXArgs<'args>
) -> WIPOffset<SparseMatrixIndexCSX<'bldr>>
[src]

pub const VT_COMPRESSEDAXIS: VOffsetT[src]

pub const VT_INDPTRTYPE: VOffsetT[src]

pub const VT_INDPTRBUFFER: VOffsetT[src]

pub const VT_INDICESTYPE: VOffsetT[src]

pub const VT_INDICESBUFFER: VOffsetT[src]

pub fn compressedAxis(&self) -> SparseMatrixCompressedAxis[src]

Which axis, row or column, is compressed

pub fn indptrType(&self) -> Option<Int<'a>>[src]

The type of values in indptrBuffer

pub fn indptrBuffer(&self) -> Option<&'a Buffer>[src]

indptrBuffer stores the location and size of indptr array that represents the range of the rows. The i-th row spans from indptr[i] to indptr[i+1] in the data. The length of this array is 1 + (the number of rows), and the type of index value is long.

For example, let X be the following 6x4 matrix:

X := [[0, 1, 2, 0], [0, 0, 3, 0], [0, 4, 0, 5], [0, 0, 0, 0], [6, 0, 7, 8], [0, 9, 0, 0]].

The array of non-zero values in X is:

values(X) = [1, 2, 3, 4, 5, 6, 7, 8, 9].

And the indptr of X is:

indptr(X) = [0, 2, 3, 5, 5, 8, 10].

pub fn indicesType(&self) -> Option<Int<'a>>[src]

The type of values in indicesBuffer

pub fn indicesBuffer(&self) -> Option<&'a Buffer>[src]

indicesBuffer stores the location and size of the array that contains the column indices of the corresponding non-zero values. The type of index value is long.

For example, the indices of the above X is:

indices(X) = [1, 2, 2, 1, 3, 0, 2, 3, 1].

Note that the indices are sorted in lexicographical order for each row.

Trait Implementations

impl<'a> Clone for SparseMatrixIndexCSX<'a>[src]

impl<'a> Copy for SparseMatrixIndexCSX<'a>[src]

impl<'a> Debug for SparseMatrixIndexCSX<'a>[src]

impl<'a> Follow<'a> for SparseMatrixIndexCSX<'a>[src]

type Inner = SparseMatrixIndexCSX<'a>

impl<'a> PartialEq<SparseMatrixIndexCSX<'a>> for SparseMatrixIndexCSX<'a>[src]

impl<'a> StructuralPartialEq for SparseMatrixIndexCSX<'a>[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,