MATLAB Function内で「system」というコマンドをコード生成対象から除外することで実行できるようになります。
以下のようにcoder.extrinsicを記述すると、除外することができます。
function y = fcn(u)
coder.extrinsic('system')
system('tree');
y = u;
end
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!