Coder - passing extra variables to function (Function Pointer/Functor)

1 vue (au cours des 30 derniers jours)
amin ya
amin ya le 25 Avr 2019
Modifié(e) : amin ya le 25 Avr 2019
In MATLAB, whenever I want to pass extra variables to originalFunction (to keep the callerFunction code clear and abstract), I would use a function handle to pass those extra variables, and then pass the function handle into callerFunction. For example:
...ExtraVars are calculated....
fun=@(x) originalFun(x,ExtraVar1,ExtraVar2);
callerFunction(fun,OtherVariables);
Consider ExtraVars are calculated.
inside callerFunction:
function callerFunction(fun,OtherVariables)
...
output=fun(x)
...
end
However, for generating MEX code for callerFunction, I can not pass function handles as inputs to a function. How can I do this for code generation?
One way which will gross the callerFunction is to add all to ExtraVars into input arguments when fun() is called. But, this will ruin the abstraction of the function.
This is how it can be done in C/C++ using Function Pointer or Functor, however, MATLAB coder doesn't seem to support these.

Réponses (0)

Catégories

En savoir plus sur MATLAB Coder dans Help Center et File Exchange

Produits


Version

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by