How to do loop for frame in Matlab?

2 次查看(过去 30 天)
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

采纳的回答

Walter Roberson
Walter Roberson 2017-11-22
编辑:Walter Roberson 2017-11-22
nrframe = 16;
framesize = 8;
message = randi([0 1], nframe, framesize);
for f = 1 : nframe
this_frame = message(f, :);
out_frame = xor(this_frame, ...)
...
end

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 MATLAB 的更多信息

产品

Community Treasure Hunt

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

Start Hunting!

Translated by