Home | History | Annotate | Download | only in LU

Lines Matching refs:j2

121     j2 = (j+2) % 3
123 return m.coeff(i1, j1) * m.coeff(i2, j2)
124 - m.coeff(i1, j2) * m.coeff(i2, j1);
189 (const MatrixBase<Derived>& matrix, int i1, int i2, int i3, int j1, int j2, int j3)
192 * (matrix.coeff(i2,j2) * matrix.coeff(i3,j3) - matrix.coeff(i2,j3) * matrix.coeff(i3,j2));
203 j2 = (j+2) % 4,
206 return general_det3_helper(matrix, i1, i2, i3, j1, j2, j3)
207 + general_det3_helper(matrix, i2, i3, i1, j1, j2, j3)
208 + general_det3_helper(matrix, i3, i1, i2, j1, j2, j3);