Calling external (C++) static methods
6 次查看(过去 30 天)
显示 更早的评论
coder.ceval(fcn,arg1,arg2)
can be used to call external c functions from autocode generated by Matlab Coder.
Is there a way to call an external class's static method using ceval call an external class's static method?
The goal here is to generate compilable autocode (not code that will actually be run from matlab) -- so I just need matlab to emit the import and ClassName::MethodName(arg1, arg2) etc. Does fcn accept ClassName::MethodName type symantics?
0 个评论
采纳的回答
更多回答(1 个)
Varun
2023-11-27
Hi Jon,
I understand that you want to use “coder.ceval” call an external class's static method. The “coder.ceval” function in MATLAB Coder is primarily designed to call external C functions. It doesn't directly support calling external C++ class methods, including static methods.
However, you can achieve the desired functionality by creating a wrapper C function that calls the C++ class method and then calling that wrapper function using coder.ceval.
Here's a general outline of the steps:
Create a C++ wrapper function that calls the static method of the external class:
// WrapperFunction.cpp
#include "ExternalClass.h"
extern "C" void callStaticMethodWrapper(int arg1, int arg2) {
ExternalClass::staticMethod(arg1, arg2);
}
In MATLAB, use "coder.ceval" to call the wrapper function:
% MATLAB script
coder.ceval('callStaticMethodWrapper', arg1, arg2);
Please refer the following documentation to learn more about using "coder.ceval":
Hope this helps.
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!