码迷,mamicode.com
首页 >  
搜索关键字:figure    ( 2425个结果
Matlab GUI 如何自动缩放
在GUI界面中:把figure的resize属性设为on把figure的units和要随界面变化的控件的units都设为normalizedfigure界面tools菜单的GUI Options,选择resize behavior 中的proportional(比例)
分类:其他好文   时间:2015-10-17 19:12:18    阅读次数:458
matlab将多条曲线绘制在一起
figure; hold on; for i=1:30 plot(x(i,:),y(i,:)); endx=1:0.2:(2*pi); hold on for i=1:9 y=sin(x+i*pi/10)+exp...
分类:其他好文   时间:2015-10-14 17:37:26    阅读次数:254
分水岭算法MATLAB编程代码解析
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
LintCode "Heapify"
My first try was, using partial sort to figure out numbers layer by layer in the heap.. it only failed with TLE with the last test case. The problem i...
分类:Windows程序   时间:2015-10-09 01:58:05    阅读次数:337
matab plot指令和低通滤波器的响应图
一、plot额外的四个属性模板使用代码% 提示 disp ('该功能练习plot额外四个属性功能');%初始化快捷式数组figure(1);x=0:pi/15:4*pi;y=exp(2*sin(x));plot(x,y,'-ko','LineWidth',3.0,'MarkerSize',6,......
分类:其他好文   时间:2015-10-04 00:28:28    阅读次数:278
利用Matlab实现PCA demo展示
input_data = rand(1000,3);%随机生成1000个样本,每个样本有x,y,z三个属性 figure(1);%控制画图的窗口为1 hold off;%使当前轴和图形不再具备被刷新的性质,关闭在此基础上再画图 plot3(input_data(:,1), input_d...
分类:其他好文   时间:2015-10-03 23:18:47    阅读次数:1471
matlab中hold指令、figure指令及subplot指令的使用
一、hold指令使用正常情况下,plot指令显示figure时,以前的数据丢失了。使用hold on指令后,此后添加的一系列plot曲线将叠加在前一个图上当使用hold off后,恢复为默认状况,plot后将取代旧的figure代码:% 提示disp ('该功能练习hold功能');%初始化快捷式数...
分类:其他好文   时间:2015-10-03 23:12:34    阅读次数:624
ASP.NET WebAPI 04 Model绑定
在前面的几篇文章中我们都是采用在URI中元数据类型进行传参,实际上ASP.NET Web API也提供了对URI进行复杂参数的绑定方式--Model绑定。这里的Model可以简单的理解为目标Anction方法的某个参数。eg: public Figure GetFigureFromQueryStri...
分类:Windows程序   时间:2015-09-20 19:09:33    阅读次数:246
Gym 100733G No Negations
题目:It is late at night and you found a logical expression on the blackboard, which you believe is the secret to figure out if your gang is going to be...
分类:其他好文   时间:2015-09-14 15:27:21    阅读次数:138
imshow显示超大图像
在matlab做图像处理时,有些图片比较大,或者自己的显示器比较下,又要求查看完整的图片怎么办呢?如果使用imshow直接显示,则显然没法达到要求。最好的办法还是滚动条:hFig = figure('Toolbar','none', 'Menubar','none');hIm = imshow(so...
分类:其他好文   时间:2015-09-14 15:14:47    阅读次数:135
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!