please explain me the following code for stop and wait protocol
Ältere Kommentare anzeigen
clc;
clear all;
disp('SAMPLE INPUT AND OUTPUT: ');
n=input('Number of Frames: ');
frame=1;
while frame<=n
fprintf('Transmitting Frame %d\n',frame);
s=randint(1,1,15);
if s<3
fprintf('TIME OUT\n Re-');
elseif s>6
fprintf('PAK of Frame %d Received\n',frame);
frame=frame+1;
else
fprintf('NAK of Frame %d Received\n Re-',frame);
end
end
1 Kommentar
Walter Roberson
am 1 Okt. 2021
No, that is not what the code does. See my description below.
Antworten (1)
Walter Roberson
am 12 Nov. 2013
0 Stimmen
The code simply simulates receiving timeouts or PAK or NAK, choosing one of them at random.
Kategorien
Mehr zu Audio Processing Algorithm Design finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!