1

我想在 C++ 独立应用程序的 MAT 文件中访问自定义 MATLAB 类的属性。自定义类是在 MATLAB 中创建的类,如下所示:

classdef customClass
    properties
        myProp
    end

    methods
        function obj = customClass(arg1,arg2)
           obj.myProp = arg1 + arg2
        end
    end
end

此类的一个实例现在保存到一个 MAT 文件中,并且应该由一个独立的 C 应用程序访问。

显然,MATLAB 提供了一个用于在 C 应用程序中读取 MAT 文件的。这适用于“普通”类型,并且 API 似乎提供了mxGetProperty访问自定义对象的功能。但是,如果我尝试使用此函数运行一个最小示例,它会失败并在management.cpp:671. 最小的例子是:

#include <iostream>
#include "mat.h"

int main()
{
    MATFile* file = matOpen("test.mat", "r");
    if (file == nullptr)
        std::cout << "unable to open .mat" << std::endl;

    mxArray* customClass = matGetVariable(file, "c");
    if (customClass == nullptr)
        std::cout << "unable to open tcm" << std::endl;

    mxArray* prop = mxGetProperty(customClass, 0, "myProp");

    if (prop == nullptr)
        std::cout << "unable to access myProp";
}

仔细查看文档会发现限制: mxGetProperty不支持独立应用程序,例如使用 MATLAB 引擎 API 构建的应用程序。

是否有任何其他可能customClass从独立的 C++ 应用程序访问 MAT 文件中的 a ?

4

1 回答 1

1

classdef 变量在 MATLAB 中是不透明的对象,属性如何存储在其中的详细信息并未公布。您必须使用官方 API 函数来获取它们(顺便说一句,mxGetProperty 制作了一个深拷贝)。所以你被卡住了。我的建议是从对象中提取您感兴趣的属性,然后将它们保存到 mat 文件中。

于 2019-01-31T03:42:03.063 回答