Lines Matching +full:- +full:j3
4 // Copyright (C) 2008-2010 Benoit Jacob <jacob.benoit.1@gmail.com>
82 result.coeffRef(1,0) = -matrix.coeff(1,0) * invdet;
83 result.coeffRef(0,1) = -matrix.coeff(0,1) * invdet;
136 - m.coeff(i1, j2) * m.coeff(i2, j1);
210 (const MatrixBase<Derived>& matrix, int i1, int i2, int i3, int j1, int j2, int j3)
213 * (matrix.coeff(i2,j2) * matrix.coeff(i3,j3) - matrix.coeff(i2,j3) * matrix.coeff(i3,j2));
226 j3 = (j+3) % 4
228 return general_det3_helper(matrix, i1, i2, i3, j1, j2, j3)
229 + general_det3_helper(matrix, i2, i3, i1, j1, j2, j3)
230 + general_det3_helper(matrix, i3, i1, i2, j1, j2, j3);
240 result.coeffRef(1,0) = -cofactor_4x4<MatrixType,0,1>(matrix);
242 result.coeffRef(3,0) = -cofactor_4x4<MatrixType,0,3>(matrix);
244 result.coeffRef(1,2) = -cofactor_4x4<MatrixType,2,1>(matrix);
246 result.coeffRef(3,2) = -cofactor_4x4<MatrixType,2,3>(matrix);
247 result.coeffRef(0,1) = -cofactor_4x4<MatrixType,1,0>(matrix);
249 result.coeffRef(2,1) = -cofactor_4x4<MatrixType,1,2>(matrix);
251 result.coeffRef(0,3) = -cofactor_4x4<MatrixType,3,0>(matrix);
253 result.coeffRef(2,3) = -cofactor_4x4<MatrixType,3,2>(matrix);
359 * This is only for fixed-size square matrices of size up to 4x4.
401 * This is only for fixed-size square matrices of size up to 4x4.