代码实现
double Matlab2c::det(Matrix& a)
{
int i=0,j;
double mo=0;
for(j=0;j<a.column;j++)
{
if(a.column==1)
{
mo=(double)(a(i,j))*pow(-1.0,i+j+2);
break;
}
Matrix c(a);
c.remove_row_column(0,j);
mo+=(double)a(i,j)*pow(-1.0,i+j+2)*Matlab2c::det(c);//Function recursive call
}
return mo;
}
参考网站:https://www.programmersought.com/article/85687623850/
原文:https://www.cnblogs.com/leowindy/p/15107058.html