필터 지우기
필터 지우기

Code generation app fails due to 'Function call failed' caused by toolbox function

조회 수: 14 (최근 30일)
I'm trying to convert the code from the Matlab example 5G New Radio Polar Coding using the Matlab Coder app. To do this I seperated out the loop into its own function. However, I'm running into issues at the 'Check for Run-Time Issues' stage giving me a 'Generation of trial code failed' error. I attached a screenshot of the error report. However, this error is caused in a function that is a part of the 5G toolbox, not the function that I'm trying to turn into C code. Can I fix this error without changing the function from the toolbox, or will I need to make my own seperate version that I edit myself in order to circumvent/fix this 'Non-constant expression or empty matrix.' error? Or is something else going on that I'm not seeing here?
Below the function I'm trying to convert. It's copied from the example and minimally changed.
function [errStats, numferr] = frames(K, poly, E, nMax, iIL, crcLen, iBIL, noiseVar, numFrames, L) %#codegen
% Channel
chan = comm.AWGNChannel('NoiseMethod','Variance','Variance',noiseVar);
% Error meter
ber = comm.ErrorRate;
numferr = 0;
for i = 1:numFrames
% Generate a random message
msg = randi([0 1],K,1);
% Attach CRC
msgcrc = nrCRCEncode(msg,poly);
% Polar encode
encOut = nrPolarEncode(msgcrc,E,nMax,iIL);
N = length(encOut);
% Rate match
modIn = nrRateMatchPolar(encOut,K+crcLen,E,iBIL);
% Modulate
modOut = nrSymbolModulate(modIn,'QPSK');
% Add White Gaussian noise
rSig = chan(modOut);
% Soft demodulate
rxLLR = nrSymbolDemodulate(rSig,'QPSK',noiseVar);
% Rate recover
decIn = nrRateRecoverPolar(rxLLR,K+crcLen,N,iBIL);
% Polar decode
decBits = nrPolarDecode(decIn,K+crcLen,E,L,nMax,iIL,crcLen);
% Compare msg and decoded bits
errStats = ber(double(decBits(1:K)), msg);
numferr = numferr + any(decBits(1:K)~=msg);
end
end

답변 (1개)

Oguz Kaan Hancioglu
Oguz Kaan Hancioglu 2023년 4월 6일
You didn't mention the size of the pArrayPtrLLR. I couldn't figure out what is the corresponding variable in your m file. The dynamic size is not supported. Before using them, you need to define the size of the pArrayPtrLLR like zeros(100,100).
  댓글 수: 3
Oguz Kaan Hancioglu
Oguz Kaan Hancioglu 2023년 4월 7일
I understand more clearly. Have you ever tried to disable dynamic memory allocation? Maybe Matlab determines the size of the pArrayPtrLLR.
cfg.EnableDynamicMemoryAllocation = false;
Matlab suggests the define all variables should be specific class, size, and complexity to generate fixed-size vectors. You can find the detailed information in
Sarah Rohder
Sarah Rohder 2023년 4월 9일
Do you mean just adding the line to the main code that calls the frames function? If so, that did not change anything unfortunately. The code ran fine if just run in Matlab, but trying to create C Code from it I'm getting the same 'function call' errors.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Logical에 대해 자세히 알아보기

제품


릴리스

R2023a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by