MATLAB画图-plot-线形、颜色、数据点形状的选择

本文介绍了如何在MATLAB中绘制图形并自定义线型、颜色及数据点形状。包括了实线、虚线等线型,红、绿、蓝等颜色选项,以及星号、圆形等数据点形状。此外,还提供了RGB颜色值和一些示例代码。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

原文地址为: 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

RGB Value

Short Name

Long Name

[1 1 0]

y

yellow

[1 0 1]

m

magenta

[0 1 1]

c

cyan

[1 0 0]

r

red

[0 1 0]

g

green

[0 0 1]

b

blue

[1 1 1]

w

white

[0 0 0]

k

black

使用形式:    line([Radius1*cos(angle1), Radius2*cos(angle2)],[Radius1*sin(angle1), Radius2*sin(angle2)], 'linewidth' ,2,'Color',[0 0 1])





转载请注明本文地址: MATLAB画图-plot-线形、颜色、数据点形状的选择
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值