【文件属性】:
文件名称:矩阵转置和矩阵最小二乘解
文件大小:1KB
文件格式:PLG
更新时间:2012-03-20 06:44:27
转置 最小二乘解
#include
using namespace std;
void swap(int &a,int &b)
{
int temp=a;
a=b;
b=temp;
}
void Reverse(int (*a)[3],int n)
{
int i,j;
for(i=0;i > a[i][j];
}
Reverse(a,3);
for(i=0;i <3;i++)
{
for(j=0;j <3;j++)
cout <