hold on 将会在原有的画布上继续绘制,否则plot命令会新生成一个画布 xlable('***') x轴设置名称 ylable legend 新增注解 title('***') 新增名字 print -dpng ‘demo.png’ 将当前画布保存 close 关闭画布 figure(n) 创建一块新画布, subplot(1,2,1) 将画布分割成1*2的格子,当前使用1这么一个格子 ax...
close:将当前打开的图表关掉 figure(n):使用plot函数前使用该函数,保证n不同,可以开启多个图表窗口而不会被覆盖 subplot(1,2,1):将图纸分为1*2的网格,画图时使用第一个网格 axis([x1,x2,y1,y2]):设置刻度值,[x1,x2]为横轴的刻度范围,[y1,y2]为纵轴的刻度范围 imagesc(A):为矩阵A绘制一个彩图矩阵...
2、可以用saveas命令保存: saveas(gcf,'picname','jpg') 注:第一个参数是matlab获取图形句柄号的函数名,第二个参数,在引号内是希望保存的文件名,这里不要写后缀,第三个参数是文件类型。 3.Figure(1);plot();——为图形编号 4.matlab中subplot(m,n,p)可以在一个figure中画m×n个子图,p可以指定子图的...
figure命令下一个plot命令将会在新创建的窗口中绘制,figure(1)返回上一张图片 2. 保存当前图像到一个eps文件 print('graph1.eps','-deps') 路劲 1. 查看搜索路劲 path 2. 增加path addpath('/home/bob/bin/octave'); 3. 对path的修改 savepath...
figure(1); plot(x,y); 编号图像1 subplot(1,2,2) 画一个1x2的格子 用第2块 axis([-1 1 -3 4]) 依次表示x y 的刻度范围 clf; 清除图像 imagesc(矩阵) 将矩阵画图 colorbar 加颜色表示条 colormap gray 变为灰度图 , 可以连接多条命令一起执行 ...
plot(数据集,函数) 绘制图形,可以设置颜色如plot(t, y1, 'r') hold on 命令使程序在旧的图像上面绘制新的图像 xlabel, ylabel 添加坐标的标签 legend(...) 给曲线添加标记 title() 添加主题 print -dpng 'name.png' 保存图像 figure(1); ... figure(2); ... 可以绘制一个以上的图形 subplot...
通过figure 来创建窗口 figure(n); % 创建 n 号窗口 1. 可以对创建的窗口进行操作 只需要点击一下窗口,就会自动把该窗口作为当前绘图窗口。 基本绘图函数 plot(x); % x 的序号作为横坐标, x 值为纵坐标 plot(x, y); % 其中x, y分别为横纵坐标数据 ...
>> title('my plot--'); % 标题 >> print -dpng 'sincos.png' % 保持图像 >> close % 关闭图像 ``` ``` >> >> figure(1);plot(t,y1); % 可以指定多个图像 >> figure(2);plot(t,y2); 可以在同一个图像(figure)上实现多个绘制(plot)。
title('trigonometric plot') % sets the title o the plot 1. 2. 3. Savethe plot 保存情节 rint -dpng 'trigoPlot.png' % saves the plot as an image 1. Get ridof figure 摆脱数字 close % gets rid of the current figure 1. Multiple figuresat the save time ...
我现在绘制2,输入:plot(t, y2)。 我要以不同的颜色绘制余弦函数,所以我在这里输入带引号的 r 绘制... 查看原文 (matlab) figure中画多条线,并对每条线依次加标注 t = 0 : 0.01 : 5; x = sin(t); y = cos(t); figure plot(t, x,'red--'); % 绘制正弦曲线 hold on; % 将正弦曲线...