用MATLAB画了散点图,想在点上标序号,该怎么弄呢?

如题所述

第1个回答  2008-10-12
举个例子

x=rand(1,100);
y=rand(1,100);
plot(x,y,'.');
text(x+.01,y,num2cell(1:100));本回答被提问者采纳
相似回答