Alternative to "besselk" and "tsearchn" functions supported by MATLAB coder for the C++ code generation

1 次查看(过去 30 天)
I need to transform a code from Matlab to C++ through Matlab coder and I'm looking for some alternative (if they exist) to the functions "besselk" and "tsearchn" which aren't in the list of functions supported by Matlab Coder. Or in alternative if there is any way to replace them.
Thank You!

回答(1 个)

Hari Krishna Ravuri
Not all built-in functions are supported for code generation. Here, you can find the list of built-in functions for which code generation is supported. Instead, you may use the following workaround.
You may try implementing the built-in function in C/C++ or you may find a C/C++ program with the required functionality. Now you may use the external C/C++ file in your MATLAB script. For this, you may compile the external C/C++ source files into a dll/shared object and then you may load that into your MATLAB script using loadlibrary(). Please refer https://in.mathworks.com/help/matlab/ref/loadlibrary.htmlfor more information on “loadlibrary()”.
Hope this helps.

类别

Help CenterFile Exchange 中查找有关 Spatial Search 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by