Clear Filters
Clear Filters

Plot of square region of points

2 views (last 30 days)
nick
nick on 14 Mar 2017
Edited: nick on 14 Mar 2017
Hi, how can I plot a square lattice of points in a central region of my axes ?
if true
x1=0;
x2=1;
y1=0;
y2=1;
x = [x1, x2, x2, x1, x1];
y = [y1, y1, y2, y2, y1];
plot(x, y, 'b-', 'LineWidth', 3);
hold on;
x1=150;
x2=350;
y1=150;
y2=350;
x = [x1, x2, x2, x1, x1];
y = [y1, y1, y2, y2, y1];
% plot(x, y, 'b-');
xlim([1, 512]);
ylim([-1, 512]);
end
I mean, to plot points in the rectangular region that is possible to have with this code

Answers (0)

Tags

Community Treasure Hunt

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

Start Hunting!