The 'matlab.mixin.Copyable' class does not support code generation.

조회 수: 16 (최근 30일)
bendong hou
bendong hou 2019년 5월 24일
댓글: zeng zeng 2025년 1월 13일
Recently,I`m working on transforming a matlab project code into c/c++ code. But now I have a problem like the title said "The 'matlab.mixin.Copyable' class does not support code generation.". this problem is becuase I writed a class inheritance the matlab.mixin.Copyable class. Who can help me to solve this problem? thank you!
  댓글 수: 2
Michael
Michael 2021년 3월 2일
I have the same problem. Were you able to resolve this?
zeng zeng
zeng zeng 2025년 1월 13일
I also have the same problem.

댓글을 달려면 로그인하십시오.

답변 (1개)

Michael
Michael 2021년 3월 5일
I got around this by creating a 'copy' method for my class. Here is a simple example.
classdef myobj < handle % used to be matlab.mixin.Copyable so I could copy
properties
prop1
prop2
prop3
prop4
end
methods
function obj = myobj(prop1, prop2)
if nargin>0
obj.prop1 = prop1;
obj.prop2 = prop2;
end
end
function obj_out = copy(obj)
%COPY creates an exact copy of the object as a separate object
obj_out = myobj(obj.prop1,obj.prop2) %Create new instance of this object
%Copy the other properties of the class that aren't generated on construction
obj_out.prop3 = obj.prop3;
obj_out.prop4 = obj.prop4;
end
end
end

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by