필터 지우기
필터 지우기

Error - 'All inputs must be constant' in MATLAB Coder

조회 수: 6 (최근 30일)
Puneet Khurana
Puneet Khurana 2017년 12월 26일
댓글: Walter Roberson 2017년 12월 27일
I am trying to convert the function poly2trellis into C using MATLAB Coder. The problem arise when I check the issues in the Coder App and it displays the error that ' all inputs must be constant'.
function [ trellis ] = con_poly2trellis(k) %#codegen
generator_matrix=[0 0];
if k==3
generator_matrix=[5 7];
else
generator_matrix=[32 35];
end
trellis = poly2trellis(k,generator_matrix);
end
Does it mean that I can generate code for a single specific input and not based on any value passed for 'k'?
What if a generic function is required which can accept any value of 'k' and I can include multiple if-else case for generator_matrix?
Please help and suggest.

채택된 답변

Walter Roberson
Walter Roberson 2017년 12월 26일
if k==3
trellis = poly2trellis(3,[5,7]);
elseif k==4
And so on.
  댓글 수: 5
Puneet Khurana
Puneet Khurana 2017년 12월 27일
got it, thanks!!
Walter Roberson
Walter Roberson 2017년 12월 27일
It does not execute all of the function calls, it compiles all of the function calls down into the specific code needed for that one trellis variety.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Error Detection and Correction에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by