Examples of MaskedSparseDoubleVectorView


Examples of edu.ucla.sspace.vector.MaskedSparseDoubleVectorView

    /**
     * {@inheritDoc}
     */
    public SparseDoubleVector getRowVector(int row) {
        row = getIndexFromMap(rowMaskMap, row);
        return new MaskedSparseDoubleVectorView(
                matrix.getRowVector(row), colMaskMap, reverseColMaskMap);
    }
View Full Code Here

Examples of edu.ucla.sspace.vector.MaskedSparseDoubleVectorView

    /**
     * {@inheritDoc}
     */
    public SparseDoubleVector getColumnVector(int col) {
        col = getIndexFromMap(colMaskMap, col);
        return new MaskedSparseDoubleVectorView(
                matrix.getColumnVector(col), rowMaskMap, reverseRowMaskMap);
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.