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

1 visualización (últimos 30 días)
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);

Respuestas (1)

KSSV
KSSV el 22 de En. de 2022
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.

Categorías

Más información sobre Introduction to Installation and Licensing en Help Center y File Exchange.

Productos


Versión

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by