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

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

Introduction

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

The text is from its open source code.

Method

FieldMatrixadd(FieldMatrix m)
Compute the sum of this and m.
FieldMatrixcopy()
Make a (deep) copy of this.
intgetColumnDimension()
Returns the number of columns in the matrix.
FieldVectorgetColumnVector(int column)
Returns the entries in column number column as a vector.
TgetEntry(int row, int column)
Returns the entry in the specified row and column.
intgetRowDimension()
Returns the number of rows in the matrix.
FieldMatrixgetRowMatrix(int row)
Get the entries in row number row as a row matrix.
FieldMatrixgetSubMatrix(int startRow, int endRow, int startColumn, int endColumn)
Get a submatrix.
T[]operate(T[] v)
Returns the result of multiplying this by the vector v .
FieldVectoroperate(FieldVector v)
Returns the result of multiplying this by the vector v .
FieldMatrixpower(final int p)
Returns the result multiplying this with itself p times.
voidsetColumnVector(int column, FieldVector vector)
Set the entries in column number column as a vector.
voidsetEntry(int row, int column, T value)
Set the entry in the specified row and column.
FieldMatrixtranspose()
Returns the transpose of this matrix.
TwalkInOptimizedOrder(FieldMatrixChangingVisitor visitor)
Visit (and possibly change) all matrix entries using the fastest possible order.
TwalkInOptimizedOrder(FieldMatrixPreservingVisitor visitor)
Visit (but don't change) all matrix entries using the fastest possible order.