本文概述
- 线条颜色, 线条样式, 标记样式和图例
- 统计图
- 条形图
例子
y=x^2-10x+15x=0:1:10;
y=x.^2-10.*x+15;
plot(x, y);
title('Plot of y=x^2-10.*x+15');
xlabel('x');
ylabel('y');
grid on;
输出
文章图片
多个地块:
例子
f(x)=sin2xd/dx f(x)=2cos2xx=0:pi/100:2*pi;
y1=sin(2*x);
y2=2*cos(2*x);
plot(x, y1, x, y2);
grid on;
输出
文章图片
线条颜色, 线条样式, 标记样式和图例
- 线条颜色:
ymcrgbwk
- 标记样式:
.→ pointo → circlex → x-mark+ → plus*→ stars → squared → diamondv → triangle(left)^ → triangle(up)<
→ triangle(left)>
→ triangle(right)p → pentagonh → hexagon<
none>
→ no marker
- 线型:
-→ solid -. → dashed dot-- →dashed.. → dotted<
none>
→ no line
标题:
标题(‘ title_string’ , ‘ Font Name’ , Helvetica’ , ‘ Font Size’ , 20.’ color’ , ‘ green’ , ‘ Font Weight’ , ‘ light / bold / normal’ , ‘ Font Angle’ , ‘ Normal /斜体’ );
轴:
轴(“ 位置” , [左, 底, 宽, 高])
例如:要在(0.2, 0.2)处创建轴, 尺寸为图形窗口的一半。
轴(“ 位置” , [。2 .2 .5 .5]);
文章图片
文本:
将文本字符串添加到绘图区域中的指定位置。
text(r, c, ‘ string’ );
GTEXT:无需指定文本位置。
gtext(‘ string’ );
在我们单击的位置, 文本将显示在此处。
传说:
图例位置:
top lefttop centertop right medium leftmedium centermedium right bottom leftbottom centerbottom right
例子
x = -pi:pi/20:pi;
plot(x, cos(x), '-ro', x, sin(x), '-.b')h = legend('cos_x', 'sin_x', 2);
输出
文章图片
统计图 英尺(x):
例子
M=10L, S=3L, F=2L, T=1Lx= [10321]pie(x);
输出
文章图片
要拉出第三张幻灯片:
例子
x= [10 3 2 1] pie(x);
y= [0 0 1 0] pie (x, y);
输出
文章图片
拉文本标签:
例子
x= [10 3 2 1]pie(x);
y= [0 0 1 0]pie (x, y, {'Machine', 'Software', 'Furniture', 'Transport'});
输出
文章图片
条形图 bar(x):绘制条形图。根据时间索引绘制x的值。
bar(t, x):如果我们想自己给t。
例子
x= [10321];
bar(x);
输出
文章图片
bar(x, ‘ stacked’ ):
Y= [5 1 28 3 79 6 85 5 54 3 2];
bar(Y, 'stack')
输出
文章图片
打印命令:
打印< 选项> < 文件名>
选项:
- -deps:创建单色封装的脚本图像。
- -depsc:它创建彩色的封装后记图像。
- -djpeg:其联合摄影专家组。
- -dpng:其可移植的网络图形。
推荐阅读
- 数学建模|MATLAB学习笔记_Day09蒙特卡洛模拟、旅行商问题、多元线性回归
- 数学建模|线性规划的实例赏析
- matlab日常|精品帖—matlab求解存在多个非线性不等式约束的多元约束优化问题方法
- 智能算法|粒子群算法的两个建模案例matlab代码
- matlab|ubuntu18.04安装matlab2018
- 循环卷积|线性卷积、循环卷积、周期卷积的定义、计算方法及三者之间的关系
- 小波变换|基于循环卷积的一维小波变换程序验证(C语言)
- MATLAB正弦波图
- MATLAB在矩阵上的运算