将类层次结构序列化为matlab中的文件

时间:2014-10-06 20:23:06

标签: xml json matlab

我有一个这样的课程:

classdef Sub <Base
    properties (GetAccess = public, SetAccess = private)
        P2
    end
    methods (Access=public)
        function NewObj=Sub(P1)
            NewObj=NewObj@Base(P1);
            NewObj.P2=P1+1;
        end
        function SaveToFile(FileNamePath)
        end
        function ReadFromFile(FileNamePath)
        end
    end
end

classdef Base <handle
    properties (GetAccess = public, SetAccess = private)
        P1
    end
    methods (Access=public)
        function NewObj=Base(P1)
            NewObj.P1=P1;
        end
    end
end

正如你所看到的,我有两个函数用于保存和读取文件的对象,我想实现它,但我不能写它们。

我已经尝试过使用xml和jsonlab而没有任何成功,因为他们无法将类序列化为字符串。

是否有任何库可以将类序列化为字符串并将其读回来?

0 个答案:

没有答案