How to do loop for frame in Matlab?

2 views (last 30 days)
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

Accepted Answer

Walter Roberson
Walter Roberson on 22 Nov 2017
Edited: Walter Roberson on 22 Nov 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

More Answers (0)

Categories

Find more on MATLAB in Help Center and File Exchange

Products

Community Treasure Hunt

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

Start Hunting!