Clear Filters
Clear Filters

how to create a 4*4 cell-grid structure in wsn using matlab and randomly deploy nodes in it.please help.

1 view (last 30 days)
I am creating a wsn structure wth 4*4 cell grids.I have used the following code to create the 4*4 cell-grid structure but now i have to randomly deploy 100 nodes in them.how could it be done?please help.
maNrGrid = 4; % Number Of Grids
x = linspace(0, 100, NrGrid+1);
[X,Y] = meshgrid(x);
figure(1)
plot(X,Y,'k')
hold on
plot(Y,X,'k')
hold off
set(gca, 'Box','off', 'XTick',[], 'YTick',[])
axis square

Accepted Answer

Walter Roberson
Walter Roberson on 9 Jun 2015
maNrGrid = 4;
coords = rand(100,2) * maNrGrid + 1;
The K'th sensor is located at (coords(K,1), coords(K,2)), and each of those will be a value from a hair over 1 to a hair less than 5.
scatter(coords(:,1),coords(:,2));
set(gca, 'XTick', 1:maNrGrid+1, 'YTick', 1:maNrGrid+1)
grid on

More Answers (0)

Categories

Find more on WSNs in Help Center and File Exchange

Tags

Products

Community Treasure Hunt

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

Start Hunting!