generate coordinates circle,square,rectangle
Mostrar comentarios más antiguos
Hello,
I have to generate points(matrix),so that i have view the points as a circle(square,rectagle), when i display points(matrix) through plot.
Could someone help me?
Thanks.
Respuesta aceptada
Más respuestas (1)
Giorgos Papakonstantinou
el 2 de Mzo. de 2014
% circle
r=1; % radius
C=[1 1];
theta=0:2*pi/360:2*pi; % the angle
m=r*[cos(theta')+C(1) sin(theta')+C(2)]; % the points you asked
plot(m(:,1), m(:,2))
axis equal
hold all
% Rectangle
a=1; % side a
b=.5; % side b
s=[0.5 0.75]; % bottom left start point
A=[s(1) s(1)+a s(1)+a s(1) s(1);s(2) s(2) s(2)+b s(2)+b s(2)];
plot(A(1,:), A(2,:))
axis equal
1 comentario
Will Reeves
el 6 de Abr. de 2018
Editada: Will Reeves
el 6 de Abr. de 2018
nice... although the "r*" shouldn't apply to the centre coordinate offset:
m=r*[cos(theta') sin(theta')] + C; % the points you asked
instead of this:
m=r*[cos(theta')+C(1) sin(theta')+C(2)]; % the points you asked
Or am I being silly?!
Categorías
Más información sobre Surfaces, Volumes, and Polygons en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!