Borrar filtros
Borrar filtros

How to do loop for frame in Matlab?

2 visualizaciones (últimos 30 días)
z m
z m el 22 de Nov. de 2017
Editada: Walter Roberson el 22 de Nov. de 2017
Hello,
I have message size 8 bits and wants to do for 128 bits , so 16 frame size each has 8 bits. I use this loop for frame size:
message= rand(1,8);
for f = 1:16
....
...
end
Is this correct loop for message = 128 bits as output ? I got same polt for 8 bits and 128 bits, is it correct? if no, please how to do it?
Thanks

Respuesta aceptada

Walter Roberson
Walter Roberson el 22 de Nov. de 2017
Editada: Walter Roberson el 22 de Nov. de 2017
nrframe = 16;
framesize = 8;
message = randi([0 1], nframe, framesize);
for f = 1 : nframe
this_frame = message(f, :);
out_frame = xor(this_frame, ...)
...
end

Más respuestas (0)

Categorías

Más información sobre MATLAB en Help Center y File Exchange.

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by