unsupported MATLAB function call for matlab function 'datastore'
조회 수: 1 (최근 30일)
이전 댓글 표시
How to deal with matlab functions that are unsupported when using Matlab Coder?
댓글 수: 0
답변 (2개)
Marc Jakobi
2016년 10월 14일
You can look into the code
edit datastore
Maybe it's possible to create a function that does the same without using unsupported functions.
댓글 수: 0
Sean de Wolski
2016년 10월 14일
If you're generating a mex file then flag it as coder.extrinsic and that piece will continue to run in MATLAB. Otherwise, rewrite it with supported MATLAB functions or c code (using coder.ceval).
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 MATLAB Code Analysis에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!