请问怎么编求“矩阵的逆”的函数??
thank you.
NO
那是矩阵的转置
矩阵的逆要麻烦的多
template<class Type>
void WT(Type a[ ],Type b[ ],int){
for(int i=0;i<n;i++)
b[n-i-1]=a[i];
}