Divide an area into equal sized small grids

19 visualizaciones (últimos 30 días)
joy
joy el 8 de Mzo. de 2015
Comentada: Swati Sarangi el 29 de Oct. de 2020
Hi,
I am working in WSN. I have created a sensor network of size (100 * 100)..How could i divide that region into equal sized small grids..Can meshgrid be used here? how?

Respuesta aceptada

Star Strider
Star Strider el 8 de Mzo. de 2015
I’m not certain what you mean by ‘equal size small grids’, but if you want a (100x100) grid, this is one way to do it:
x = linspace(1, 100);
[X,Y] = meshgrid(x);
figure(1)
plot(X,Y,'k')
hold on
plot(Y,X,'k')
hold off
  5 comentarios
Star Strider
Star Strider el 8 de Mzo. de 2015
This code should work:
NrGrid = 6; % 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
The ‘NrGrid’ assignment is the number of grids created on each axis.
The new plot:
Swati Sarangi
Swati Sarangi el 29 de Oct. de 2020
@Star Strider
How can it be done in case of a 3D figure? like for a cuboid?

Iniciar sesión para comentar.

Más respuestas (1)

Image Analyst
Image Analyst el 8 de Mzo. de 2015

Categorías

Más información sobre Polar Plots en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by