Uses of Interface
sbrt.kernel.math.algebra.MatrixBuilder

Packages that use MatrixBuilder
sbrt.kernel.math.algebra Provides classes and interfaces for creating objects relevant to algebra. 
 

Uses of MatrixBuilder in sbrt.kernel.math.algebra
 

Subinterfaces of MatrixBuilder in sbrt.kernel.math.algebra
 interface DoubleMatrixBuilder<R,C>
          This interface is used to represent mutable matrices whose elements are strictly double precision numbers.
 interface SmdMatrix<R,C>
          This interface is used to represent sparse mutable matrices containing strictly double precision numbers as elements.
 

Classes in sbrt.kernel.math.algebra that implement MatrixBuilder
 class AbstractMdMatrix<R,C>
          This abstract class is a skeleton implementation of DoubleMatrixBuilder.
 class AbstractSmdMatrix<R,C>
          This abstract class is a skeleton implementation of SmdMatrix.
 class HashMatrix<R,C>
          This class is a java.util.LinkedHashMap based implementation of SmdMatrix.
 class RowOrTreeMatrix<R extends Comparable<? super R>,C extends Comparable<? super C>>
          This class is a java.util.TreeMap based implementation of SmdMatrix.
 class TreeMatrix<R extends Comparable<? super R>,C extends Comparable<? super C>>
          This class is a java.util.TreeMap based implementation of SmdMatrix.
 

Methods in sbrt.kernel.math.algebra with parameters of type MatrixBuilder
<R,C,E> void
MatrixTransposer.transpose(Matrix<R,C,E> matrix, MatrixBuilder<? super C,? super R,E> emptyMatrix)
          Fills emptyMatrix with the transpose of matrix.