matlab 在坐标系中对多点进行标注

2024-11-17 10:25:30
推荐回答(1个)
回答1:

%给你个例子吧,不知道是否是你想要的
x=0:1:100; y=x.^2;
plot(x,y)

xx=10*[1 2 3 4 5 6 7 8]; yy=xx.^2;
for i=1:length(xx)
str=strcat('(',num2str(xx(i)),',',num2str(yy(i)),')');
text(xx(i),yy(i),str);
end