怎么用C语言求逆矩阵?
怎么用C语言求逆矩阵?
for(i=0;i<5;i++)
for(j=0;j<5;j++)
if( a【i】【j】!=a【j】【i】)
{ temp=a【i】【j】;
a【i】【j】=a【j】【i】;
a【j】【i】=temp;
}
5×5矩阵