필터 지우기
필터 지우기

Matlab Coder: How can ich define the inputs of a Mex file I want to generate if the input is a cell containing several strcuts?

조회 수: 5 (최근 30일)
Hello,
Ich would like to generate a mex file with the matlab coder. The first step worked but I am stuck defining the inputs of the Mex-file.
My Input is a cell array of (1x6) with 6 structs. Can I load the my input let's call it varargin as a varagin.mat and matlab coder generates the input automatically from this file?
Or how can I proceed. I would very much appreciate if I could talk to someone in person rather explaining my problem in an email. Is this possible
Many thanks and best regards
Hannes Buchholz

채택된 답변

Ryan Livingston
Ryan Livingston 2019년 5월 7일
If you have a variable that represents this cell array, call it cellVar, then you can use that to define by example in the Coder App:
You can also use it directly with the codegen command:
codegen myFunction -args {cellVar}
And with coder.typeof if you'd like to change properties:
t = coder.typeof(cellVar); ....
The best way to get in touch with someone is to call Technical Support at your local office:

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Input Specification에 대해 자세히 알아보기

제품


릴리스

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by