rtkcmn专题

RTKLIB学习笔记——rtkcmn.c(矩阵及向量运算一)

矩阵运算 创建n*m矩阵 extern double *mat(int n, int m) 1、n<=0 or m>=0  return NULL 2、内存分配错误  !(p=(double *)malloc(sizeof(double)*n*m)) fatalerr("matrix memory allocation error: n=%d,m=%d\n",n,m); 创建 n