Home | History | Annotate | Download | only in Skyline

Lines Matching refs:col

146     inline Scalar coeff(Index row, Index col) const {
147 const Index outer = IsRowMajor ? row : col;
148 const Index inner = IsRowMajor ? col : row;
195 inline Scalar& coeffRef(Index row, Index col) {
196 const Index outer = IsRowMajor ? row : col;
197 const Index inner = IsRowMajor ? col : row;
206 if (col > row) //upper matrix
212 if (col < row) //lower matrix
240 inline Scalar coeffLower(Index row, Index col) const {
241 const Index outer = IsRowMajor ? row : col;
242 const Index inner = IsRowMajor ? col : row;
264 inline Scalar coeffUpper(Index row, Index col) const {
265 const Index outer = IsRowMajor ? row : col;
266 const Index inner = IsRowMajor ? col : row;
293 inline Scalar& coeffRefLower(Index row, Index col) {
294 const Index outer = IsRowMajor ? row : col;
295 const Index inner = IsRowMajor ? col : row;
312 inline bool coeffExistLower(Index row, Index col) {
313 const Index outer = IsRowMajor ? row : col;
314 const Index inner = IsRowMajor ? col : row;
329 inline Scalar& coeffRefUpper(Index row, Index col) {
330 const Index outer = IsRowMajor ? row : col;
331 const Index inner = IsRowMajor ? col : row;
348 inline bool coeffExistUpper(Index row, Index col) {
349 const Index outer = IsRowMajor ? row : col;
350 const Index inner = IsRowMajor ? col : row;
392 /** \returns a reference to a novel non zero coefficient with coordinates \a row x \a col.
400 EIGEN_DONT_INLINE Scalar & insert(Index row, Index col) {
401 const Index outer = IsRowMajor ? row : col;
402 const Index inner = IsRowMajor ? col : row;
408 return m_data.diag(col);
776 inline Index col() const {
840 inline Index col() const {