Home
last modified time | relevance | path

Searched refs:RowDenseStorage (Results 1 – 10 of 10) sorted by relevance

/dports/math/xlife++/xlifepp-sources-v2.0.1-2018-05-09/src/largeMatrix/denseStorage/
H A DRowDenseStorage.cpp36 RowDenseStorage::RowDenseStorage(string_t id) in RowDenseStorage() function in xlifepp::RowDenseStorage
40 RowDenseStorage::RowDenseStorage(number_t nr, string_t id) in RowDenseStorage() function in xlifepp::RowDenseStorage
44 RowDenseStorage::RowDenseStorage(number_t nr, number_t nc, string_t id) in RowDenseStorage() function in xlifepp::RowDenseStorage
61 number_t RowDenseStorage::pos(number_t i, number_t j, SymType s) const in pos()
69 void RowDenseStorage::positions(const std::vector<number_t>& rows, const std::vector<number_t>& col… in positions()
104 RowDenseStorage* RowDenseStorage::toScalar(dimen_t nbr, dimen_t nbc) in toScalar()
106 return new RowDenseStorage(nbr*nbRows_, nbc*nbCols_, stringId+"_scalar"); in toScalar()
114 void RowDenseStorage::multMatrixVector(const std::vector<M>& m, V* vp, R* rp) const in multMatrixVector()
123 void RowDenseStorage::multMatrixVector(const std::vector<M>& m, const std::vector<V>& v, std::vecto… in multMatrixVector()
139 void RowDenseStorage::multVectorMatrix(const std::vector<M>& m, V* vp, R* rp) const in multVectorMatrix()
[all …]
H A DRowDenseStorage.hpp44 class RowDenseStorage : public DenseStorage class
49 RowDenseStorage(string_t id="RowDenseStorage"); //!< default constructor
54 virtual ~RowDenseStorage() {} //!< virtual destructor in ~RowDenseStorage()
56 {return new RowDenseStorage(*this);} in clone()
446 MatrixStorage* RowDenseStorage::transpose(const std::vector<T>& m, std::vector<T>& mt) const in transpose()
448 RowDenseStorage* stot = new RowDenseStorage(nbCols_, nbRows_); in transpose()
467 void RowDenseStorage::gaussSolver(std::vector<T>& A, std::vector<std::vector<T> >& b) const in gaussSolver()
550 void RowDenseStorage::gaussSolver(std::vector<T>& A, std::vector<T>& b) const in gaussSolver()
568 void RowDenseStorage::lu(std::vector<T>& A, std::vector<T>& LU, std::vector<number_t>& P) const in lu()
627 void RowDenseStorage::lu(std::vector<T>& A, std::vector<T>& LU) const in lu()
[all …]
/dports/math/xlife++/xlifepp-sources-v2.0.1-2018-05-09/doc/tex/inputs/dev/
H A DDenseStorage.tex21 \item the row dense storage ({\class RowDenseStorage} class)
113 \subsection{{\classtitle RowDenseStorage}, {\classtitle ColDenseStorage}, {\classtitle DualDenseSto…
115RowDenseStorage}, {\class ColDenseStorage}, {\class DualDenseStorage} and {\class SymDenseStorage}…
116 {\class RowDenseStorage} class manages dense storage where matrix values are stored row by row in v…
119 class RowDenseStorage : public DenseStorage
121 RowDenseStorage();
122 RowDenseStorage(Number);
123 RowDenseStorage(Number, Number);
124 virtual ~RowDenseStorage() {}
/dports/math/xlife++/xlifepp-sources-v2.0.1-2018-05-09/doc/tex/inputs/tikz/
H A DlargeMatrix.tikz16 \umlemptyclass[x=15, y=-8]{RowDenseStorage}
31 \umlHVinherit{RowDenseStorage}{DenseStorage}
/dports/math/xlife++/xlifepp-sources-v2.0.1-2018-05-09/src/form/
H A DBilinearForm.hpp368 MatrixStorage* sto= new RowDenseStorage(m.numberOfRows(), m.numberOfColumns(),""); in MatrixBilinearForm()
380 MatrixStorage* sto= new RowDenseStorage(m.numberOfRows(), m.numberOfColumns(),""); in MatrixBilinearForm()
/dports/math/xlife++/xlifepp-sources-v2.0.1-2018-05-09/src/term/computation/
H A DtermUtils.cpp190 case _row : trace_p->pop(); return new RowDenseStorage(dimr, dimc, ss.str()); in buildStorage()
259 case _row : return new RowDenseStorage(dimr, dimc); in buildStorage()
309 case _row : trace_p->pop(); return new RowDenseStorage(dimr, dimc, str); in buildStorage()
/dports/math/xlife++/xlifepp-sources-v2.0.1-2018-05-09/src/largeMatrix/
H A DMatrixStorage.cpp123 case _row : return new RowDenseStorage(nbr, nbc, id); in createMatrixStorage()
159 case _row : return new RowDenseStorage(nbr, nbc, id); in extract()
H A DLargeMatrix.hpp1041 storage_p = new RowDenseStorage(nbRows, nbCols); in allocateStorage()
3844 mR.storage_p=new RowDenseStorage(mR.nbRows,mR.nbCols); //create row dense storage in multMatrixMatrix()
/dports/math/xlife++/xlifepp-sources-v2.0.1-2018-05-09/doc/tex/
H A Dxlifepp-listings-style.sty133 Rotation2d, Rotation3d, RowCsStorage, RowDenseStorage,
/dports/math/xlife++/xlifepp-sources-v2.0.1-2018-05-09/src/term/
H A DTermMatrixExt.cpp2562 MatrixStorage* sto = new RowDenseStorage(nv, nu); in integralRepresentation()