Grid points in 2 axis lines

11 views (last 30 days)
Mohammad Kashkouli
Mohammad Kashkouli on 19 Sep 2018
Hello Everyone I want to plot points in grid map such as below figure when I have x ponits and z points.
  4 Comments
Mohammad Kashkouli
Mohammad Kashkouli on 19 Sep 2018
I want to grid lines these points such as figure that attached.
KSSV
KSSV on 19 Sep 2018
Have a look on meshgrid

Sign in to comment.

Answers (1)

KSSV
KSSV on 19 Sep 2018
x=[100,20,10,10,10,10,20,100];
y=[10,20,30,40,50,100] ;
[X,Y] = meshgrid(x,y) ;
mesh(X,Y) ;
view(2)

Community Treasure Hunt

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

Start Hunting!