How to convert to C a function with variable fields in the input?
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
PatrizioGraziosi
el 28 de Sept. de 2020
Comentada: Walter Roberson
el 29 de Sept. de 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 comentarios
Respuesta aceptada
Mario Malic
el 28 de Sept. de 2020
Editada: Mario Malic
el 28 de Sept. de 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 comentarios
Walter Roberson
el 29 de Sept. de 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.
Más respuestas (0)
Ver también
Categorías
Más información sobre Structures en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!