How to convert to C a function with variable fields in the input?
1 view (last 30 days)
Show older comments
PatrizioGraziosi
on 28 Sep 2020
Commented: Walter Roberson
on 29 Sep 2020
Hello everybody,
I wish to convert to C a function that have two inputs, a scalar and a file or a struct
[outputs] = myfunction(id, 'myfile.mat') ;
or
[outputs] = myfunction(id, mystruct) ;
myfile.mat or mystruct contain fields which can have different names according to the user's inputs, which are checked by the the function according to the isfield command.
However it looks I cannot define an input type 'file' in the Matlab coder... nor I can leave a struct input without defining all the field names...
Any suggestions, please?
Thanks
Patrizio
Edit: original question modified to make it more focused
0 Comments
Accepted Answer
Mario Malic
on 28 Sep 2020
Edited: Mario Malic
on 28 Sep 2020
You can send a variable that contains full path to the file as an input argument and within the function use load command.
Edit: though I haven't used MATLAB Coder before, so I am not sure whether this will work.
2 Comments
Walter Roberson
on 29 Sep 2020
C and C++ do not have dynamic field names. You cannot create a struct or a union with dynamic field names in C -- you could only create a datatype in which there was a list of field names and a list of corresponding pointers to data.
I do not have experience with generated MATLAB code so I do not know if MATLAB Coder provides the interface to the structure maintenance API that you would call from mex routines.
More Answers (0)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!