gpt4 book ai didi

无法使用 Matlab Coder 将 Matlab 代码转换为 C 代码

转载 作者:太空狗 更新时间:2023-10-29 15:28:14 26 4
gpt4 key购买 nike

我有一个如下所示的 MATLAB 代码。我正在尝试使用 MATLAB Coder 将此代码转换为 C 代码,但我遇到了错误。

enter image description here

Expected either a logical, char, int, fi, single, or double. Found an mxArray. MxArrays are returned from calls to the MATLAB interpreter and are not supported inside expressions. They may only be used on the right-hand side of assignments and as arguments to extrinsic functions.

% Applies A-weighted filtering to sound and draws it's plot
% in a figure as output.
function A_filtering
coder.extrinsic('tic')
coder.extrinsic('toc')
coder.extrinsic('display')
sampleRate = 44100;
reader = dsp.AudioFileReader('Jet_Flypast.wav');
fs = 44100;
weightFilter = weightingFilter('A-weighting',fs);
% fileWriter = dsp.AudioFileWriter('SampleRate',fs);
% visualize(weightFilter,'class 1')
scope = dsp.SpectrumAnalyzer('SampleRate',fs,...
'PlotAsTwoSidedSpectrum',false,...
'FrequencyScale','Log',...
'FrequencyResolutionMethod','WindowLength',...
'WindowLength',sampleRate,...
'Title','A-weighted filtering',...
'ShowLegend',true,...
'ChannelNames',{'Original Signal','Filtered Signal'});

tic
while toc < 60
x = reader();
y = weightFilter(x);
scope([x(:,1),y(:,1)])
display(x(:,1))
end

release(scope);
release(weightFilter);
release(reader);
end

这个问题可能是重复的,但我在互联网上搜索并没有找到任何相关的帖子。有什么办法可以解决这个错误吗?

最佳答案

您已将 tic, toc 声明为外部的,这是正确的,因为代码生成不支持它们。由于它们是外部的,因此这些函数的结果不能直接用于其他表达式。编码器在运行时不知道这些结果的内容。但是您可以通过将结果分配给已知变量来提供有关它们类型的提示。你应该更换行

while toc < 60

下面几行

tElapsed = 0;
tElapsed = toc;
while tElapsed < 60

由于我们将 tElapsed 初始化为 0,因此它是一种已知类型的双标量。当 toc 分配给 tElapsed 时,toc 的输出将转换为该类型。

另请注意,当您使用 MATLAB Coder 生成 mex 文件时,您的代码将正常工作。但是您不能从中生成独立代码,因为外部函数需要 MATLAB 才能运行。

关于无法使用 Matlab Coder 将 Matlab 代码转换为 C 代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53613194/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com