C++ code generation of function handles

5 visualizzazioni (ultimi 30 giorni)
Zeno
Zeno il 28 Nov 2013
Commentato: Paul Wintz il 16 Ago 2021
I would like to convert my matlab code to C++ code
F = @(x,u) cp_dyn_mex(x,u);
Fp = @(x,u) pour(F,x,u);
DYN = @(x,u,t) diff_xu(Fp, x, u, herr, order);
I get the following:
Caused by:     Error determining type for input 'pour:fun'.         Class function_handle is not supported by coder.Type.

Risposta accettata

Walter Roberson
Walter Roberson il 29 Nov 2013
Anonymous functions are not supported, but handles to actual functions are.
  1 Commento
Paul Wintz
Paul Wintz il 16 Ago 2021
This answer is out of date. As of 2021a (possibly earlier), anonymous functions are supported.

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su MATLAB Coder in Help Center e File Exchange

Prodotti

Community Treasure Hunt

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

Start Hunting!

Translated by