将这个代码转为QT#include "mat.h" int main() { MATFile *pmat;//指向mat文件的指针 const char **dir;//元素名列表 const char *file;//要打开的mat文件名 int ndir;//mat文件中的元素(矩阵、元胞)个数 mxArray cell1;//指向要读取的元胞数据的指针 mxArray mat1;//指向元胞中某个元素的指针 double a;//指向元胞中某个元素第一个数据的指针 int cellM,cellN,M,N; int count; int i,j; file="cellMat.mat"; //要打开的mat文件名 pmat = matOpen(file, "r");//打开文件,返回指向文件指针 if (pmat == NULL) { printf("打开mat文件失败!"); return 0; } //读取mat文件中的矩阵列表(返回mat中包含的元素的名字) dir = (const char **)matGetDir(pmat, &ndir); if (dir == NULL) { printf("读取mat文件失败!"); return 0; } //输出cellMat.mat中的元素数量 printf("%s文件中一共有%d个元素\n",file,ndir); //从打开的mat文件中(pamt)读取名字为dir[0]的元胞 //(返回指向该矩阵的指针,注意:MATLAB中的矩阵是按列优先存储到) cell1 = matGetVariable(pmat,dir[0]);//指向名字为dir[0]的元胞 cellM = (int)mxGetM(cell1);//获取元胞的行数 cellN = (int)mxGetN(cell1);//获取元胞的列数 //按列优先依次读取元胞中的数据 for(count=0;count<cellMcellM;count++) { mat1 = mxGetCell(cell1,count);//按列优先,指向元胞中的第count+1个元素 a = (double)mxGetData(mat1);//指向mat1中的第一个数据 M = (int)mxGetM(mat1);//获取mat1的行数 N = (int)mxGetN(mat1);//获取mat1的列数 printf("元素%d的维数为:(%d,%d)\n",count,M,N); for (i=0;i<M;i++) { for (j=0;j<N;j++) printf("%-5.4f ",a[jM+i]); printf("\n"); } } matClose(pmat);//关闭文件 return 0; }
时间: 2024-03-22 14:42:55 浏览: 53
PMAT数据装载机说明书.ppt
转化为QT的代码如下:
```cpp
#include <QCoreApplication>
#include <QDebug>
#include <QFile>
#include "mat.h"
int main(int argc, char *argv[])
{
QCoreApplication a(argc, argv);
MATFile *pmat; //指向mat文件的指针
const char **dir; //元素名列表
const char *file; //要打开的mat文件名
int ndir; //mat文件中的元素(矩阵、元胞)个数
mxArray *cell1; //指向要读取的元胞数据的指针
mxArray *mat1; //指向元胞中某个元素的指针
double *a; //指向元胞中某个元素第一个数据的指针
int cellM, cellN, M, N;
int count;
int i, j;
file = "cellMat.mat"; //要打开的mat文件名
pmat = matOpen(file, "r"); //打开文件,返回指向文件指针
if (pmat == NULL) {
qDebug() << "打开mat文件失败!";
return a.exec();
}
//读取mat文件中的矩阵列表(返回mat中包含的元素的名字)
dir = (const char **)matGetDir(pmat, &ndir);
if (dir == NULL) {
qDebug() << "读取mat文件失败!";
return a.exec();
}
//输出cellMat.mat中的元素数量
qDebug() << file << "文件中一共有" << ndir << "个元素";
//从打开的mat文件中(pamt)读取名字为dir[0]的元胞
//(返回指向该矩阵的指针,注意:MATLAB中的矩阵是按列优先存储到)
cell1 = matGetVariable(pmat,dir[0]);//指向名字为dir[0]的元胞
cellM = (int)mxGetM(cell1);//获取元胞的行数
cellN = (int)mxGetN(cell1);//获取元胞的列数
//按列优先依次读取元胞中的数据
for(count = 0; count < cellM * cellN; count++) {
mat1 = mxGetCell(cell1, count);//按列优先,指向元胞中的第count+1个元素
a = mxGetPr(mat1);//指向mat1中的第一个数据
M = (int)mxGetM(mat1);//获取mat1的行数
N = (int)mxGetN(mat1);//获取mat1的列数
qDebug() << "元素" << count << "的维数为:(" << M << "," << N << ")";
for (i = 0; i < M; i++) {
for (j = 0; j < N; j++)
qDebug() << a[j * M + i];
}
}
matClose(pmat);//关闭文件
return a.exec();
}
```
阅读全文