Re: How i can plot points coordinates?



A=[45 23;102 15; 89 20];

figure
plot(A(:,1),A(:,2),'r.');
axis([0 150 0 25]);

str=num2str(A);
text(A(:,1)*1.02,A(:,2)*1.02,str);

Jérôme
.