Clear Filters
Clear Filters

implementation of Time division multiple access in matlab

12 views (last 30 days)
clc
clear all;
close all;
num_node=input('Enter number of node for network=');
No_of_time_slots=num_node;
Bandwidth=200; %Khz
time_slots_length=input('Enter the length of time slot');%seconds
Guard_interval=input('Enter the value of guard interval');
for i=1:1:No_of_time_slots
pause(time_slots_length);
a(i)=time_slots_length;
end
endclc;
This is the code i have written on my own. I need to know the corrections in it.
Regards
  7 Comments
Jan
Jan on 22 Mar 2018
Edited: Jan on 22 Mar 2018
How is the delay defined? Do you have any formula or definition?
For the implementation in Matlab, the terms "CSMA/CA" and "tdma" are confusing only. Remember, that the most readers of the forum do not work in your field of science. And for the actual code, all we need to know is the formula, which you should know, e.g. from your text book or homework question. You could search in WikiPedia also.
Momen AlManaseh
Momen AlManaseh on 7 May 2022
excuseme sir;
can you give me a short brief about your code, please?

Sign in to comment.

Answers (0)

Categories

Find more on WSNs in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!