Name of MEX class other than MexFunction

1 visualizzazione (ultimi 30 giorni)
Diego Leal Gonzalez
Diego Leal Gonzalez il 19 Nov 2020
Risposto: Priysha LNU il 24 Nov 2020
Am I allowed to use a different name for a MEX class other than MexFunction?
I tried the following and gives me a ton of errors (forward declaration of 'MexFunction')
class test : public matlab::mex::Function{
}
but if I use
class MexFunction : public matlab::mex::Function{
}
works fine

Risposte (2)

Pankhuri Kasliwal
Pankhuri Kasliwal il 24 Nov 2020
Hello,
The documentation says that it must be called MexFunction. Please refer to the link given below -

Priysha LNU
Priysha LNU il 24 Nov 2020
Hi,
Here is an excerpt from the documentation:
"Define a C++ MEX function as a class named MexFunction that derives from the matlab::mex::Function class. The MexFunction class overrides the virtual operator() of the matlab::mex::Function class."
So, the class named as "MexFunction" should be entry point.
For more details and examples, refer to the following documentation links:
Hope this helps!
DISCLAIMER: These are my own views and in no way depict those of MathWorks.

Categorie

Scopri di più su Write C Functions Callable from MATLAB (MEX Files) in Help Center e File Exchange

Tag

Prodotti


Release

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by