Home
last modified time | relevance | path

Searched defs:DiagonalMatrix (Results 1 – 25 of 27) sorted by relevance

12

/dports/math/py-pyodeint/pyodeint-0.10.4/external/anyode/include/anyode/
H A Danyode_matrix.hpp111 struct DiagonalMatrix : public MatrixBase<Real_t> { // single diagonal struct
112 static constexpr bool m_colmaj = true;
113 DiagonalMatrix(Real_t * const data, int nr, int nc, int ld, bool own_data=false) : in DiagonalMatrix() function
117 Real_t& operator()(int /* ri */, int ci) noexcept override final { in operator ()()
120 void read(const MatrixBase<Real_t>& source){ in read()
125 DiagonalMatrix(const MatrixBase<Real_t>& source) : in DiagonalMatrix() argument
131 DiagonalMatrix(const DiagonalMatrix<Real_t> &ori) : MatrixBase<Real_t>(ori) in DiagonalMatrix() argument
134 bool guaranteed_zero_index(const int ri, const int ci) const final { in guaranteed_zero_index()
137 void dot_vec(const Real_t * const vec, Real_t * const out) final { in dot_vec()
142 void set_to_eye_plus_scaled_mtx(Real_t scale, const MatrixBase<Real_t>& source) override { in set_to_eye_plus_scaled_mtx()
[all …]
/dports/math/py-pyodesys/pyodesys-0.14.1/pyodesys/native/sources/anyode/
H A Danyode_matrix.hpp111 struct DiagonalMatrix : public MatrixBase<Real_t> { // single diagonal struct
112 static constexpr bool m_colmaj = true;
113 DiagonalMatrix(Real_t * const data, int nr, int nc, int ld, bool own_data=false) : in DiagonalMatrix() argument
117 Real_t& operator()(int /* ri */, int ci) noexcept override final { in operator ()()
120 void read(const MatrixBase<Real_t>& source){ in read()
125 DiagonalMatrix(const MatrixBase<Real_t>& source) : in DiagonalMatrix() argument
131 DiagonalMatrix(const DiagonalMatrix<Real_t> &ori) : MatrixBase<Real_t>(ori) in DiagonalMatrix() argument
134 bool guaranteed_zero_index(const int ri, const int ci) const final { in guaranteed_zero_index()
137 void dot_vec(const Real_t * const vec, Real_t * const out) final { in dot_vec()
142 void set_to_eye_plus_scaled_mtx(Real_t scale, const MatrixBase<Real_t>& source) override { in set_to_eye_plus_scaled_mtx()
[all …]
/dports/math/py-pygslodeiv2/pygslodeiv2-0.9.4/external/anyode/include/anyode/
H A Danyode_matrix.hpp111 struct DiagonalMatrix : public MatrixBase<Real_t> { // single diagonal struct
112 static constexpr bool m_colmaj = true;
113 DiagonalMatrix(Real_t * const data, int nr, int nc, int ld, bool own_data=false) : in DiagonalMatrix() function
117 Real_t& operator()(int /* ri */, int ci) noexcept override final { in operator ()()
120 void read(const MatrixBase<Real_t>& source){ in read()
125 DiagonalMatrix(const MatrixBase<Real_t>& source) : in DiagonalMatrix() argument
131 DiagonalMatrix(const DiagonalMatrix<Real_t> &ori) : MatrixBase<Real_t>(ori) in DiagonalMatrix() argument
134 bool guaranteed_zero_index(const int ri, const int ci) const final { in guaranteed_zero_index()
137 void dot_vec(const Real_t * const vec, Real_t * const out) final { in dot_vec()
142 void set_to_eye_plus_scaled_mtx(Real_t scale, const MatrixBase<Real_t>& source) override { in set_to_eye_plus_scaled_mtx()
[all …]
/dports/math/blaze/blaze-3.8/blaze/math/adaptors/diagonalmatrix/
H A DDense.h854 inline DiagonalMatrix<MT,SO,true>::DiagonalMatrix() in DiagonalMatrix() function
885 inline DiagonalMatrix<MT,SO,true>::DiagonalMatrix( const A1& a1 ) in DiagonalMatrix() function
904 inline DiagonalMatrix<MT,SO,true>::DiagonalMatrix( size_t n, const ElementType& init ) in DiagonalMatrix() function
945 inline DiagonalMatrix<MT,SO,true>::DiagonalMatrix( initializer_list< initializer_list<ElementType> … in DiagonalMatrix() function
987 inline DiagonalMatrix<MT,SO,true>::DiagonalMatrix( size_t n, const Other* array ) in DiagonalMatrix() function
1027 inline DiagonalMatrix<MT,SO,true>::DiagonalMatrix( const Other (&array)[N][N] ) in DiagonalMatrix() function
1074 inline DiagonalMatrix<MT,SO,true>::DiagonalMatrix( ElementType* ptr, size_t n ) in DiagonalMatrix() function
1123 inline DiagonalMatrix<MT,SO,true>::DiagonalMatrix( ElementType* ptr, size_t n, size_t nn ) in DiagonalMatrix() function
1144 inline DiagonalMatrix<MT,SO,true>::DiagonalMatrix( const DiagonalMatrix& m ) in DiagonalMatrix() function
1162 inline DiagonalMatrix<MT,SO,true>::DiagonalMatrix( DiagonalMatrix&& m ) noexcept in DiagonalMatrix() function
H A DSparse.h370 inline DiagonalMatrix<MT,SO,false>::DiagonalMatrix() in DiagonalMatrix() function
389 inline DiagonalMatrix<MT,SO,false>::DiagonalMatrix( size_t n ) in DiagonalMatrix() function
411 inline DiagonalMatrix<MT,SO,false>::DiagonalMatrix( size_t n, size_t nonzeros ) in DiagonalMatrix() function
435 inline DiagonalMatrix<MT,SO,false>::DiagonalMatrix( size_t n, const std::vector<size_t>& nonzeros ) in DiagonalMatrix() function
472 inline DiagonalMatrix<MT,SO,false>::DiagonalMatrix( initializer_list< initializer_list<ElementType>… in DiagonalMatrix() function
493 inline DiagonalMatrix<MT,SO,false>::DiagonalMatrix( const DiagonalMatrix& m ) in DiagonalMatrix() function
511 inline DiagonalMatrix<MT,SO,false>::DiagonalMatrix( DiagonalMatrix&& m ) noexcept in DiagonalMatrix() function
535 inline DiagonalMatrix<MT,SO,false>::DiagonalMatrix( const Matrix<MT2,SO2>& m ) in DiagonalMatrix() function
/dports/math/apache-commons-math/commons-math3-3.6.1-src/src/main/java/org/apache/commons/math3/linear/
H A DDiagonalMatrix.java35 public class DiagonalMatrix extends AbstractRealMatrix class
49 public DiagonalMatrix(final int dimension) in DiagonalMatrix() method in DiagonalMatrix
62 public DiagonalMatrix(final double[] d) { in DiagonalMatrix() method in DiagonalMatrix
80 public DiagonalMatrix(final double[] d, final boolean copyArray) in DiagonalMatrix() method in DiagonalMatrix
/dports/science/lammps/lammps-stable_29Sep2021/lib/atc/
H A DDiagonalMatrix.h207 DiagonalMatrix<T>::DiagonalMatrix(INDEX rows, bool zero) in DiagonalMatrix() function
216 DiagonalMatrix<T>::DiagonalMatrix(const DiagonalMatrix<T>& c) in DiagonalMatrix() function
225 DiagonalMatrix<T>::DiagonalMatrix(const Vector<T>& v) in DiagonalMatrix() function
H A DMatrixDef.h119 template<typename T> class DiagonalMatrix; variable
/dports/science/liggghts/LIGGGHTS-PUBLIC-3.8.0-26-g6e873439/lib/atc/
H A DDiagonalMatrix.h206 DiagonalMatrix<T>::DiagonalMatrix(INDEX rows, bool zero) in DiagonalMatrix() function
215 DiagonalMatrix<T>::DiagonalMatrix(const DiagonalMatrix<T>& c) in DiagonalMatrix() function
224 DiagonalMatrix<T>::DiagonalMatrix(const Vector<T>& v) in DiagonalMatrix() function
H A DMatrixDef.h119 template<typename T> class DiagonalMatrix; variable
/dports/math/py-Diofant/Diofant-0.13.0/diofant/matrices/expressions/
H A Ddiagonal.py5 class DiagonalMatrix(MatrixExpr): class
/dports/math/dune-common/dune-common-df65b1282ea89ad40d2cb6565983f7e633ccce31/dune/common/test/
H A Ddiagonalmatrixtest.cc70 typedef Dune::DiagonalMatrix<K,n> DiagonalMatrix; in test_interface() typedef
/dports/math/dune-common/dune-common-df65b1282ea89ad40d2cb6565983f7e633ccce31/dune/common/
H A Ddiagonalmatrix.hh50 class DiagonalMatrix class
102 DiagonalMatrix (const K& k) in DiagonalMatrix() function in Dune::DiagonalMatrix
107 DiagonalMatrix (const FieldVector<K,n>& diag) in DiagonalMatrix() function in Dune::DiagonalMatrix
119 DiagonalMatrix (std::initializer_list<K> const &l) in DiagonalMatrix() function in Dune::DiagonalMatrix
554 class DiagonalMatrix<K, 1> : public FieldMatrix<K, 1, 1> class
588 DiagonalMatrix(const K& scalar) in DiagonalMatrix() function in Dune::DiagonalMatrix
/dports/math/py-sympy/sympy-1.9/sympy/matrices/expressions/
H A Ddiagonal.py8 class DiagonalMatrix(MatrixExpr): class
/dports/math/deal.ii/dealii-803d21ff957e349b3799cd3ef2c840bc78734305/include/deal.II/lac/
H A Ddiagonal_matrix.h227 DiagonalMatrix<VectorType>::DiagonalMatrix(const VectorType &vec) in DiagonalMatrix() function
/dports/biology/mummer/mummer-4.0.0beta2-2-g277dac5/include/mummer/
H A Dsw_align.hh137 class DiagonalMatrix { class
142 DiagonalMatrix() : m_size(0) { } in DiagonalMatrix() function in mummer::sw_align::DiagonalMatrix
/dports/math/libmesh/libmesh-1.6.2/src/numerics/
H A Ddiagonal_matrix.C29 DiagonalMatrix<T>::DiagonalMatrix(const Parallel::Communicator & comm_in) : SparseMatrix<T>(comm_in) in DiagonalMatrix() function
/dports/math/py-mathics/Mathics3-2.2.0/mathics/builtin/
H A Dtensors.py411 class DiagonalMatrix(Builtin): class
/dports/graphics/ossim/ossim-OrchidIsland-2.11.1/include/ossim/matrix/
H A Dnewmat.h25 #define DiagonalMatrix DMatrix macro
261 class DiagonalMatrix; variable
351 friend class DiagonalMatrix; variable
506 friend class DiagonalMatrix; variable
776 DiagonalMatrix():GeneralMatrix() {} in DiagonalMatrix() function
780 DiagonalMatrix(const DiagonalMatrix& gm):GeneralMatrix(gm) { GetMatrix(&gm); } in DiagonalMatrix() function
/dports/graphics/ossim/ossim-OrchidIsland-2.11.1/src/matrix/
H A Dnewmat5.cpp67 in DiagonalMatrix()
68 GeneralMatrix* RowVector::Transpose(TransposedMatrix*, MatrixType mt) in DiagonalMatrix()
145 gmy->ReleaseAndDelete(); gmy->NegAdd(gm,f); in SymmetricMatrix()
/dports/math/optpp/optpp-2.4/newmat11/
H A Dnewmat.h25 #define DiagonalMatrix DMatrix macro
261 class DiagonalMatrix; variable
353 friend class DiagonalMatrix; variable
519 friend class DiagonalMatrix; variable
801 DiagonalMatrix() {} in DiagonalMatrix() function
805 DiagonalMatrix(const DiagonalMatrix& gm) { GetMatrix(&gm); } in DiagonalMatrix() function
H A Dnewmat4.C67 DiagonalMatrix::DiagonalMatrix(ArrayLengthSpecifier m) : GeneralMatrix(m) in DiagonalMatrix() function
145 DiagonalMatrix::DiagonalMatrix(const BaseMatrix& M) in DiagonalMatrix() function
/dports/math/newmat/newmat-1.1_1/
H A Dnewmat.h29 #define DiagonalMatrix DMatrix macro
277 class DiagonalMatrix; variable
411 friend class DiagonalMatrix; variable
590 friend class DiagonalMatrix; variable
925 DiagonalMatrix() {} in DiagonalMatrix() function
929 DiagonalMatrix(const DiagonalMatrix& gm) in DiagonalMatrix() function
H A Dnewmat4.cpp74 DiagonalMatrix::DiagonalMatrix(ArrayLengthSpecifier m) : GeneralMatrix(m) in DiagonalMatrix() function in NEWMAT::DiagonalMatrix
152 DiagonalMatrix::DiagonalMatrix(const BaseMatrix& M) in DiagonalMatrix() function in NEWMAT::DiagonalMatrix
/dports/science/libint2/libint-2.7.1/include/libint2/lcao/
H A D1body.h66 DiagonalMatrix; typedef

12