Java org.apache.mahout.math SparseRowMatrix fields, constructors, methods, implement or subclass

Example usage for Java org.apache.mahout.math SparseRowMatrix fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.mahout.math SparseRowMatrix.

The text is from its open source code.

Constructor

SparseRowMatrix(int rows, int columns)
Construct a matrix of the given cardinality, with rows defaulting to RandomAccessSparseVector implementation
SparseRowMatrix(int rows, int columns, Vector[] vectors, boolean shallowCopy, boolean randomAccess)
SparseRowMatrix(int rows, int columns, Vector[] rowVectors)
Construct a sparse matrix starting with the provided row vectors.
SparseRowMatrix(int rows, int columns, boolean randomAccess)

Method