Im developing an application in Matlab and it calls a C# dll using NET.addAssembly to analyse files. I've created an structure in Matlab with some features about the kind of file to be analyse:
File = struct('Name','File Name','HeaderLines',14,'ColName','ID','ColIdx',[]...);
And I want to send this structure to my C# dll, that would read the file and fill some of the features of the structure and send it back to Matlab.
Is it possible to do that? Because at the moment Im getting errors: " No method 'xxx' with matching signature found.
Can you please confirm if Matlab structures are compatible in NET? Which is the more suitable object for this purpouse? Where can I find examples Matlab - NET Assembly?