Specifying function names in generated code using emlc
1 次查看(过去 30 天)
显示 更早的评论
How do I specify what name emlc will assign to a function that it generates? I'm looking for something like the eml.cstructname function to specify what name I want it to use in the generated code. Right now, it prepends something like 'm_pref2_' to the function name. But, I am generating functions to be called by code that is already written.
emlc will assign a predictable name to the top-level function. But, if I make that function a subfunction and generate code, emlc changes the name of my function.
I could generate code for each function separately, but then I have to deal with different versions of common supporting functions, like mldivide, or functions with variable size inputs.
0 个评论
回答(1 个)
Fred Smith
2011-8-22
Hi Todd,
You can specify multiple top-level functions to EMLC. Each top-level entry point will have the name you gave it in your MATLAB code.
It is not a good idea to rely on the names EMLC uses internally as these may change arbitrarily as you update your code.
Good luck.
-Fred
0 个评论
另请参阅
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!