can I generate c/c++ code from an m file function that uses a Mupad function ?
이전 댓글 표시
hi , I have an m-file that uses a Mupad function looks like following :
function fibret = myfibgen(x)
fibret = feval(symengine,'numlib::fibonacci',x)
which generates nth fibonacci number using the Mupad numlib::fibonacci function,it works perfectly in the matlab comand line however when I try to generate c/c++ code from it I get following error :
"??? The function 'symengine' is not supported for standalone code generation. See the documentation for coder.extrinsic to learn how you can use this function in simulation."
question : is what I'm trying to do possible but should be done otherwise or actually not doable at all ?
thanks in advance
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Functional Programming에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!