MATLAB画图-plot-线形、颜色、数据点形状的选择
·
原文地址为: MATLAB画图-plot-线形、颜色、数据点形状的选择
转载请注明本文地址: MATLAB画图-plot-线形、颜色、数据点形状的选择
{转载} 原地址:http://blog.sina.com.cn/s/blog_6288b2260102ve6d.html
可以按这个顺序来输入线形命令:
线形
- Solid line (default)
-- Dashed line
: Dotted line
-. Dash-dot line
颜色
r Red
g Green
b Blue
c Cyan
m Magenta
y Yellow
k Black
w White
数据点的形状
+ Plus sign
o Circle
* Asterisk
. Point
x Cross
'square' or s Square
'diamond' or d Diamond
^ Upward-pointing triangle
v Downward-pointing triangle
> Right-pointing triangle
'pentagram' or p Five-pointed star (pentagram)
'hexagram' or h Six-pointed star (hexagram)
Examples
Plot the sine function over three different ranges using different line styles, colors, and markers.
t = 0:pi/20:2*pi;
plot(t,sin(t),'-.r*')
hold on
plot(t,sin(t-pi/2),'--mo')
plot(t,sin(t-pi),':bs')
hold off
转载请注明本文地址: MATLAB画图-plot-线形、颜色、数据点形状的选择
「智能机器人开发者大赛」官方平台,致力于为开发者和参赛选手提供赛事技术指导、行业标准解读及团队实战案例解析;聚焦智能机器人开发全栈技术闭环,助力开发者攻克技术瓶颈,促进软硬件集成、场景应用及商业化落地的深度研讨。 加入智能机器人开发者社区iRobot Developer,与全球极客并肩突破技术边界,定义机器人开发的未来范式!
更多推荐



所有评论(0)