我想使用 MATLAB 编码器将 matlab 代码转换为 C 代码,但效果不佳。
我试图在 matlab 代码下面.. 并使用 MATLAB 编码器构建
function example()
recObj = audiorecorder(44100,16,1);
disp('Start speaking.');
recordblocking(recObj, 5);
disp('End of Recording.');
play(recObj);
但是有一些错误。喜欢..
编码器-build ex1.prj ??? 'audiorecorder' 类不支持代码生成。
Error in ==> example Line: 2 Column: 10
Code generation failed: Open error report.
所以,我试图删除录音机功能,但它也不起作用。
我不知道这些代码有什么问题。我该怎么办?请帮忙。