Can somebody assist me with the Mathlab source code to plot 9x9 grids and place sensors in each grid?

1 view (last 30 days)
Can somebody assist me with the Mathlab source code to plot 9.9 grids and place sensors in each grid?

Answers (1)

KSSV
KSSV on 3 Aug 2022
x = 1:9 ;
y = 1:9 ;
[X,Y] = meshgrid(x,y) ;
figure
hold on
plot(X,Y,'r',X',Y','r',X,Y,'.k')
  3 Comments

Sign in to comment.

Categories

Find more on Graphics Objects in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!