当前位置:网站首页>Matlab drawing 1
Matlab drawing 1
2022-08-04 18:00:00 【Thousands of old bamboo】
Draw multiple function images at the same time
figure,plot(x1,y1);
figure,plot(x2,y2);
eg
x=-10:0.1:10;
y1=x.^2-8;
y2=exp(x);
figure,plot(x,y1);
figure,plot(x,y2);
//此时gcf与gca表示的是figure的句柄值
效果如下:
Put multiple function images in one window
subplot(m,n,num);//m是行数,n是列数,numis the first picture
eg:
t=0:0.1:2*pi;x=3*cos(t);
y1=sin(t);y2=2*sin(t);y3=3*sin(t);y4=4*sin(t);
subplot(2,3,1);plot(x,y1);
subplot(2,3,2);plot(x,y2);
subplot(2,3,3);plot(x,y3);
subplot(2,3,4);plot(x,y4);
效果如下
保存图像
saveas(gcf,'<filename>','<formattype>');
位图格式 矢量图格式
边栏推荐
- Create Sentinel high-availability cluster current limiting middleware from -99
- Investigation and Research Based on the Involution Behavior of College Students
- Documentary on Security Reinforcement of Network Range Monitoring System (1)—SSL/TLS Encrypted Transmission of Log Data
- 通俗易懂-二维数组只能省略行不能省略列-人话版本
- 使用Redis做某个时间段在线数统计
- 开发一套高容错分布式系统
- Cholesterol-PEG-Maleimide,CLS-PEG-MAL,胆固醇-聚乙二醇-马来酰亚胺一种修饰性PEG
- Thrift IDL Sample File
- 启动项目(瑞吉外卖)
- Error when using sourcemap for reporting an error: Can‘t resolve original location of error.
猜你喜欢
随机推荐
树莓派连接蓝牙音箱
【注册荣耀开发者】赢【荣耀70】手机
Thrift IDL Sample File
Fork/Join框架
【日记】mysql基本操作
flink-cdc支持并行读取一张mysql表的binlog不?
群友求助,一周没有搞定的需求,3分钟就解决了?
[Web Automation Test] Quick Start with Playwright, 5 minutes to get started
离散化求前缀和
【日记】UPNP功能会允许自动给光猫追加端口映射
Create Sentinel high-availability cluster current limiting middleware from -99
Cron表达式
又一款高颜值 Redis 官方可视化工具,功能真心强大!
面试官:可以谈谈乐观锁和悲观锁吗
【软件工程之美 - 专栏笔记】37 | 遇到线上故障,你和高手的差距在哪里?
树莓派利用autofs自动挂载/卸载外部硬盘
asp dotnet core 通过图片统计 csdn 用户访问
租房小程序登顶码云热门
树莓派安装samba用来共享文件
【技术笔记】let 和 var和const的异同