Are the 5G toolbox functions coder friendly? I am getting errors while generating C++ code for some 5G toolbox functions. (v2019a)

조회 수: 1 (최근 30일)
In some functions, the array sizes are dynamically changing which is not supported by coder. This gives errors in coder.
Some functions require inputs to be of bigger bitwidth (uint8 or double) where logical would also have sufficed. These datatypes are validated at the inputs. In order to make coder pass, we are giving bigger datatypes. Is there a way to get around this?

채택된 답변

Steven Lord
Steven Lord 2019년 10월 18일
Looking at the list of functions in 5G Toolbox in release R2019a, I see that 67 of them are listed as having the "C/C++ Code Generation" extended capability. Are the functions you're trying to use listed when you filter based on that extended capability? If so, open the function's reference page and scroll down to the "Extended Capabilities" section at the end and see what usage notes or limitations are listed there.
Note that you can do this same listing and filtering in other products, such as in the list of functions in MATLAB.
  댓글 수: 2
Pranjali Deshmukh
Pranjali Deshmukh 2019년 11월 7일
Thanks. Some of the functions do have some usage limitations & we'll have to make sure we adhere to those while generating the C code.
Graham Freeland
Graham Freeland 2019년 11월 11일
I'd still be interested in knowing the particular 'design cases' that you are referring to here.

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

추가 답변 (1개)

Graham Freeland
Graham Freeland 2019년 11월 4일
Hi Pranjali,
Regarding the dynamic array sizes, can you state the specific functions that you are referring to, and, if appropriate, the usage which requires them to be dynamic. For code generation troubleshooting, we really need to know the details.
Regarding the data types, a C99 boolean is at least a char and on most platform will probably map to the same size as an unit8. So, a logical will not be 'bigger', without resorting to bitpacking representations etc.
Graham

카테고리

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

태그

제품


릴리스

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by