org.ojalgo.matrix.factory
Interface MatrixFactory
- All Known Implementing Classes:
- DefaultFactory, JamaFactory
public interface MatrixFactory
Classes that implement the MatrixFactory interface makes instances of
classes that implement the BasicMatrix interface.
- Author:
- apete
buildColumnVector
BasicMatrix buildColumnVector(List<BigDecimal> aColumn)
- See Also:
BasicMatrix.toListOfElements(),
Orginal
buildEye
BasicMatrix buildEye(int aRowDim,
int aColDim)
- Orginal
buildRandom
BasicMatrix buildRandom(int aRowDim,
int aColDim,
RandomNumber aRndm)
buildRowVector
BasicMatrix buildRowVector(List<BigDecimal> aRow)
- See Also:
BasicMatrix.toListOfElements(),
Orginal
buildZero
BasicMatrix buildZero(int aRowDim,
int aColDim)
copy
BasicMatrix copy(Array2Dim<? extends Number> anArray)
copy
BasicMatrix copy(BasicMatrix aMtrx)
copy
BasicMatrix copy(double[][] aRaw)
copy
BasicMatrix copy(MatrixStore<? extends Number> aStore)