我想将这个MATLAB代码转换为c ++
function [ c ] = main()
%#codegen
coder.inline('never');
c = imread('focus.jpg');
但它给了我error : The function 'imread' is not supported for standalone code generation. See the documentation for coder.extrinsic
?? !!
答案 0 :(得分:1)
功能" imread" matlab编译器不支持,但matlab编译器在matlab的命令窗口中使用关键字deploytool
支持它。