Uses of Class
org.apache.commons.math.linear.BlockRealMatrix

Packages that use BlockRealMatrix
org.apache.commons.math.linear Linear algebra support. 
 

Uses of BlockRealMatrix in org.apache.commons.math.linear
 

Methods in org.apache.commons.math.linear that return BlockRealMatrix
 BlockRealMatrix BlockRealMatrix.add(BlockRealMatrix m)
          Compute the sum of this and m.
 BlockRealMatrix BlockRealMatrix.add(RealMatrix m)
          Compute the sum of this and m.
 BlockRealMatrix BlockRealMatrix.copy()
          Returns a (deep) copy of this.
 BlockRealMatrix BlockRealMatrix.createMatrix(int rowDimension, int columnDimension)
          Create a new RealMatrix of the same type as the instance with the supplied row and column dimensions.
 BlockRealMatrix BlockRealMatrix.getColumnMatrix(int column)
          Returns the entries in column number column as a column matrix.
 BlockRealMatrix BlockRealMatrix.getRowMatrix(int row)
          Returns the entries in row number row as a row matrix.
 BlockRealMatrix BlockRealMatrix.getSubMatrix(int startRow, int endRow, int startColumn, int endColumn)
          Gets a submatrix.
 BlockRealMatrix BlockRealMatrix.multiply(BlockRealMatrix m)
          Returns the result of postmultiplying this by m.
 BlockRealMatrix BlockRealMatrix.multiply(RealMatrix m)
          Returns the result of postmultiplying this by m.
 BlockRealMatrix BlockRealMatrix.scalarAdd(double d)
          Returns the result of adding d to each entry of this.
 BlockRealMatrix BlockRealMatrix.subtract(BlockRealMatrix m)
          Compute this minus m.
 BlockRealMatrix BlockRealMatrix.subtract(RealMatrix m)
          Compute this minus m.
 BlockRealMatrix BlockRealMatrix.transpose()
          Returns the transpose of this matrix.
 

Methods in org.apache.commons.math.linear with parameters of type BlockRealMatrix
 BlockRealMatrix BlockRealMatrix.add(BlockRealMatrix m)
          Compute the sum of this and m.
 BlockRealMatrix BlockRealMatrix.multiply(BlockRealMatrix m)
          Returns the result of postmultiplying this by m.
 void BlockRealMatrix.setRowMatrix(int row, BlockRealMatrix matrix)
          Sets the entries in row number row as a row matrix.
 BlockRealMatrix BlockRealMatrix.subtract(BlockRealMatrix m)
          Compute this minus m.
 



Copyright © 2003-2011 The Apache Software Foundation. All Rights Reserved.