can anyone help me with this function.. i'm new to matlab and i need this for my research

조회 수: 1 (최근 30일)
can anyone help me with this function.. i'm new to matlab and i need this for my research and i'm still stuck on this.
when i run this function it says:
Not enough input arguments.
Error in untitled (line 8)
y=step(Turbo, u, intrlvrIndices);
function y=TurboEncoder(u, intrlvrIndices)
%#codegen
persistent Turbo
if isempty(Turbo)
Turbo = comm.TurboEncoder('TrellisStructure', poly2trellis(4, [13 15], 13), ...
'InterleaverIndicesSource','Input port');
end
y=step(Turbo, u, intrlvrIndices);

답변 (1개)

KSSV
KSSV 2022년 1월 22일
You have to provide the inputs to the function. It seems you are either calling the function without providing inputs or running it by hitting F5 key or run button.
u = define your value ;
intrlvrIndices = define your value ;
y = TurboEncoder(u, intrlvrIndices) ; % now call the function
Note: To use/ call the function, it should be in the present working directory.

카테고리

Help CenterFile Exchange에서 Introduction to Installation and Licensing에 대해 자세히 알아보기

제품


릴리스

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by