org.ojalgo.matrix.factory
Interface MatrixFactory

All Superinterfaces:
BasicMatrix.Factory
All Known Implementing Classes:
DefaultFactory, JamaFactory

Deprecated. v27 Use BasicMatrix.Factory instead.

@Deprecated
public interface MatrixFactory
extends BasicMatrix.Factory

Classes that implement the MatrixFactory interface makes instances of classes that implement the BasicMatrix interface.

Author:
apete

Method Summary
 BasicMatrix buildColumnVector(List<BigDecimal> aColumn)
          Deprecated. v27 Use BasicMatrix.Factory.makeColumnVector(List) instead
 BasicMatrix buildEye(int aRowDim, int aColDim)
          Deprecated. Use BasicMatrix.Factory.makeEye(int,int) instead
 BasicMatrix buildRandom(int aRowDim, int aColDim, RandomNumber aRndm)
          Deprecated. Use BasicMatrix.Factory.makeRandom(int,int,RandomNumber) instead
 BasicMatrix buildRowVector(List<BigDecimal> aRow)
          Deprecated. v27 Use BasicMatrix.Factory.makeRowVector(List) instead
 BasicMatrix buildZero(int aRowDim, int aColDim)
          Deprecated. Use BasicMatrix.Factory.makeZero(int,int) instead
 BasicMatrix copy(Array2Dim<? extends Number> anArray)
          Deprecated. v27 Use BasicMatrix.Factory.copyArray(Array2Dim) instead
 BasicMatrix copy(BasicMatrix aMtrx)
          Deprecated. v27 Use BasicMatrix.Factory.copyMatrix(BasicMatrix) instead
 BasicMatrix copy(double[][] aRaw)
          Deprecated. v27 Use BasicMatrix.Factory.copyRaw(double[][]) instead
 BasicMatrix copy(MatrixStore<? extends Number> aStore)
          Deprecated. v27 Use BasicMatrix.Factory.copyStore(MatrixStore) instead
 
Methods inherited from interface org.ojalgo.matrix.BasicMatrix.Factory
copyArray, copyMatrix, copyRaw, copyStore, makeColumnVector, makeEye, makeRandom, makeRowVector, makeZero
 

Method Detail

buildColumnVector

@Deprecated
BasicMatrix buildColumnVector(List<BigDecimal> aColumn)
Deprecated. v27 Use BasicMatrix.Factory.makeColumnVector(List) instead

See Also:
BasicMatrix.toListOfElements(), BasicMatrix.Factory.makeRowVector(List)

buildEye

@Deprecated
BasicMatrix buildEye(int aRowDim,
                                int aColDim)
Deprecated. Use BasicMatrix.Factory.makeEye(int,int) instead

Orginal


buildRandom

@Deprecated
BasicMatrix buildRandom(int aRowDim,
                                   int aColDim,
                                   RandomNumber aRndm)
Deprecated. Use BasicMatrix.Factory.makeRandom(int,int,RandomNumber) instead


buildRowVector

@Deprecated
BasicMatrix buildRowVector(List<BigDecimal> aRow)
Deprecated. v27 Use BasicMatrix.Factory.makeRowVector(List) instead

See Also:
BasicMatrix.toListOfElements(), BasicMatrix.Factory.makeColumnVector(List)

buildZero

@Deprecated
BasicMatrix buildZero(int aRowDim,
                                 int aColDim)
Deprecated. Use BasicMatrix.Factory.makeZero(int,int) instead


copy

@Deprecated
BasicMatrix copy(Array2Dim<? extends Number> anArray)
Deprecated. v27 Use BasicMatrix.Factory.copyArray(Array2Dim) instead


copy

@Deprecated
BasicMatrix copy(BasicMatrix aMtrx)
Deprecated. v27 Use BasicMatrix.Factory.copyMatrix(BasicMatrix) instead


copy

@Deprecated
BasicMatrix copy(double[][] aRaw)
Deprecated. v27 Use BasicMatrix.Factory.copyRaw(double[][]) instead


copy

@Deprecated
BasicMatrix copy(MatrixStore<? extends Number> aStore)
Deprecated. v27 Use BasicMatrix.Factory.copyStore(MatrixStore) instead