How to adjust Grid limits

I am trying to match each point in the x axis with the y axis.
I am proceding the following way:
t = datenum(now):.5:datenum(now)+ 6
x = sin(t)
plot(t,x,'-ro')
datetick('x',2,'keepticks');
grid on
I want to keep the grid lines and add other grid lines highlighted with different colors marking the corresponding x value and y value in the graph.
Can you please help?

Answers (3)

Alex
Alex on 30 Aug 2012

0 votes

You need to play with the XTick and YTick axes properties.
set(hFig, 'XTick', [1 10 20 ....])
mouihbi chaker
mouihbi chaker on 21 Oct 2013
Can you help me to place nodes (points) in an orderly manner and regularly spaced rows and columns oubien in each square of the grid please

2 Comments

Cedric
Cedric on 21 Oct 2013
Edited: Cedric on 21 Oct 2013
If you were defining precisely what you want in the main thread of your question, you would get an answer.
I want to place 4 nodes in each square ?! thanx

Sign in to comment.

mouihbi chaker
mouihbi chaker on 26 Oct 2013
I work with the LEACH routing protocol in a network of sensor I want implemented nodes with the model grid who can help me please

Categories

Find more on Graph and Network Algorithms in Help Center and File Exchange

Tags

Asked:

on 30 Aug 2012

Answered:

on 26 Oct 2013

Community Treasure Hunt

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

Start Hunting!