MATLAB: How can I seperate between points id and scatter markers in figure

scatter

example;
x=[1000;1100;1200];
y=[2000;2100;2200];
points_id={'p100';'p200';'p300'};
figure(1),scatter(x, y, 'b^');grid on;
text(x, y, points_id);
%There is no space between points id and scatter markers in figure so I need to seperate them a bit more for more conveniently looking.

Best Answer

text(x + 10, y, points_id); %adjust the "10" until it looks good