产生方波 cleart=0:0.01:10;subplot(4,1,1)f1=square(t); % 产生周期为2pi的方波信号plot(t,f1)axis([0,10,-1.2,1.2])subplot(4,1,2)f2=square(t,30); % 产生周期为2pi,占空比为30%的方波信号 ...
分类:
其他好文 时间:
2016-04-11 15:45:56
阅读次数:
595
1、Matlab生成含有subplot的eps文件总是四周留白,造成过宽过长无法插入文章,尝试了很多方法,终于测试出了能用且比较方便的方法。2、其实gsview中的"PStoEPS"功能可以做到这件事(Ref1),就是自己点来点去发现right和top点不准,不是所见即所得的,而且在win64下,g...
分类:
其他好文 时间:
2016-01-20 13:21:14
阅读次数:
163
%矩阵索引的作用close all;clear all;clcI=imread('rose.tif');subplot(221),imshow(I),title('imshow(I)')%行序号颠倒,上下颠倒subplot(222),imshow(I(end:-1:1,:)),title('imsh...
分类:
其他好文 时间:
2016-01-16 01:33:01
阅读次数:
192
1.图像反转MATLAB 程序实现如下:I=imread('xian.bmp');J=double(I);J=-J+(256-1); %图像反转线性变换H=uint8(J);subplot(1,2,1),imshow(I);subplot(1,2,2),imshow(H);2.灰度线性变换MATLA...
分类:
其他好文 时间:
2015-12-31 01:46:21
阅读次数:
365
记录一些用Matlab的技巧。//imshow全屏subplot(1,3,3); imshow(topSketMat); hold on;set(gcf, 'units', 'normalized', 'outerposition', [0 0 1 1]);//保存handle为图片,并且关闭fig...
分类:
其他好文 时间:
2015-12-01 14:32:21
阅读次数:
192
图形的控制与表现 (Figure control and representation)MATLAB提供的用于图形控制的函数和命令: axis: 人工选择坐标轴尺寸. clf:清图形窗口.ginput: 利用鼠标的十字准线输入. hold:保持图形. shg:显示图形窗口.subplot: 将图形窗...
分类:
其他好文 时间:
2015-11-19 22:28:22
阅读次数:
207
closeall;%%%Step1:彩***像->灰度图像rgb=imread(‘pears.png‘);I=rgb2gray(rgb);figure;subplot(121)imshow(I)%Step2:利用梯度实现图像的分割%使用sobel算子进行边缘检测,text(732,501,‘ImagecourtesyofCorel‘,‘FontSize‘,7,‘HorizontalAlignment‘,‘right‘)hy=fspecial(‘so..
分类:
编程语言 时间:
2015-10-11 19:47:13
阅读次数:
380
一、hold指令使用正常情况下,plot指令显示figure时,以前的数据丢失了。使用hold on指令后,此后添加的一系列plot曲线将叠加在前一个图上当使用hold off后,恢复为默认状况,plot后将取代旧的figure代码:% 提示disp ('该功能练习hold功能');%初始化快捷式数...
分类:
其他好文 时间:
2015-10-03 23:12:34
阅读次数:
624
通过plt.subplot可以在一张图中画出多个子图
#coding: utf-8
#!/usr/bin/env python
"""
Draw a graph with matplotlib.
You must have matplotlib for this to work.
"""
__author__ = """Aric Hagberg (hagberg@lanl.gov)"""
# ...
分类:
编程语言 时间:
2015-08-19 11:13:00
阅读次数:
155
1. 建立图:利用子图 (subplot) 或坐标轴 (axes)### gca自动生成:单图,简单,不可调 ###ax = gca()### 利用子图:简单易用,不可重叠 ###ax1 = subplot(2,2,1)ax2 = subplot(2,2,2)ax3 = subplot(2,2,3)...
分类:
其他好文 时间:
2015-08-13 12:01:45
阅读次数:
93