How to convert to C a function with variable fields in the input?

2 visualizaciones (últimos 30 días)
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

Respuesta aceptada

Mario Malic
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
PatrizioGraziosi
PatrizioGraziosi el 29 de Sept. de 2020
Hi Mario,
thanks for your time! The function should run into a parfor loop so I set the file as shared in all the workers before the parfor to avoid the file to be transferred continuously from master to workers...
However, I have found that I can input one struct data instead of the file, but the problem is still there as the structure fields cannot be all defined in advance, before the user eneters the inputs...
Can someone suggest a strategy?
Walter Roberson
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.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Structures en Help Center y File Exchange.

Productos


Versión

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by