How can i take a property names in cell array of char vectors without using property function?
3 ビュー (過去 30 日間)
古いコメントを表示
Hi,
I'm Trying to convert matlab code into C/C++ code where i have stuck with a error named properties is not supported for code generation.
as for my understanding properties(className) displays/stores the names of the properties of matlab class into a cell array of char vectors.
Is there a way i can access and store the names of the properties of matlab class into a another variable without using properties function?
Thanks,
Vimal
0 件のコメント
回答 (1 件)
Sean de Wolski
2020 年 5 月 12 日
編集済み: Sean de Wolski
2020 年 5 月 12 日
Why do you need to the property list in the C/C++ code?
You could always just store it manually which would also let you control which properties are exposed.
classdef MyClass
properties
PropertyList = {'A', 'B'}
A
B
C
end
end
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!