Re: [讨论] plot 标数字

楼主: newton2009 (好瘦唷QQ)   2014-04-17 13:18:14
※ 引述《goldberg73 (高柏)》之铭言:
: 如果一资料 如
: a=10 25 35 45
: 想要画出其折线图,有办法顺便在图上显示出数值大小吗??
: 谢谢
a = [10 25 35 45];
x = 1:length(a);
y = a;
figure
plot(x, y, '-')
for i=1:length(a)
text(x(i), y(i), num2str(y(i))) % 可以调整标记的位置!
end
作者: goldberg73 (高柏)   2014-04-17 14:25:00
谢谢!
楼主: newton2009 (好瘦唷QQ)   2014-04-18 13:42:00
不会

Links booklink

Contact Us: admin [ a t ] ucptt.com