MATLAB爱好者论坛-LabFans.com

MATLAB爱好者论坛-LabFans.com (https://www.labfans.com/bbs/index.php)
-   MATLAB论坛 (https://www.labfans.com/bbs/forumdisplay.php?f=6)
-   -   [求助]二维画点问题 (https://www.labfans.com/bbs/showthread.php?t=6564)

hejiefabio 2009-02-27 16:23

[求助]二维画点问题
 
请问我现在已经画出二维图形,想要在原图形上添加几个关键点,如何划啊??用什么函数啊??
二维曲线如下
x=0:10:920410;
y=.1989236468e-12*x.^2+.1822893318e-6*x-.5334621633e-17;
plot(x,y)
还想画出以下三点。
x=[0,657610,920410];
y=[0,0.2059,0.3363];

hejiefabio 2009-02-27 17:03

回复: [求助]二维画点问题
 
问题已经解决程序如下:
x=0:10:920410;
y=.1989236468e-12*x.^2+.1822893318e-6*x-.5334621633e-17;
plot(x,y);
hold on
x=[0,657610,920410];
y=[0,0.2059,0.3363];
plot(x,y,'*')

wxw0827 2009-03-06 10:52

回复: [求助]二维画点问题
 
2 个附件
根据二楼做出来的图像


所有时间均为北京时间。现在的时间是 03:05

Powered by vBulletin
版权所有 ©2000 - 2025,Jelsoft Enterprises Ltd.