Java org.apache.commons.math3.linear SparseRealMatrix fields, constructors, methods, implement or subclass

Example usage for Java org.apache.commons.math3.linear SparseRealMatrix fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.commons.math3.linear SparseRealMatrix.

The text is from its open source code.

Implementation

org.apache.commons.math3.linear.SparseRealMatrix has the following implementations.
Click this link to see all its implementation.

Method

intgetColumnDimension()
Returns the number of columns in the matrix.
doublegetEntry(int row, int column)
Get the entry in the specified row and column.
intgetRowDimension()
Returns the number of rows in the matrix.
voidsetEntry(int row, int column, double value)
Set the entry in the specified row and column.
doublewalkInOptimizedOrder(RealMatrixChangingVisitor visitor)
Visit (and possibly change) all matrix entries using the fastest possible order.