会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
丰玉清
CnBlogs
Home
New Post
Contact
Admin
Subscription
2015年9月3日
matlab中setdiff
源自:http://www.w2bc.com/Article/16709matlab中setdiff()函数作用:判断2个数组中不同元素c = setdiff(A, B)返回在A中有,而B中没有的值,结果向量将以升序排序返回。在集合论中,c = A - B。A和B也可以是字符串细胞数组。c = se...
Read More
posted @ 2015-09-03 21:17 丰玉清
Views(3146)
Comments(0)
Diggs(0)
2015年9月1日
matlab函数 bsxfun浅谈(转载)
关于matlab函数 bsxfun本文来源:http://blog.sina.com.cn/s/blog_9e67285801010ttn.htmla=[1 2 3];b=[1 2 3]';c=bsxfun(@plus,a,b)c = 2 3 4 3 4 5 4 ...
Read More
posted @ 2015-09-01 19:42 丰玉清
Views(844)
Comments(0)
Diggs(0)
2015年8月31日
interp2
%关于interp2的自我理解%利用已知的信息,对数据进行拟合%用一个例子进行理解例:设有数据x=1,2,3,4,5,6,y=1,2,3,4,在由x,y构成的网格上,数据为:12,10,11,11,13,1516,22,28,35,27,2018,21,26,32,28,2520,25,30,33,...
Read More
posted @ 2015-08-31 16:05 丰玉清
Views(705)
Comments(0)
Diggs(0)
2015年8月19日
将.mat文件中的数据转换成图片
%% 如何将.mat文件中的数据转换成图片clc;clear all;addpath F_data/MAT;load('D:\face.mat')for i=1:q img=uint8(reshape(Data(:,i),imSize)); imgname = strcat('D:\MAT\PIC\...
Read More
posted @ 2015-08-19 10:53 丰玉清
Views(4177)
Comments(1)
Diggs(0)
2015年8月17日
实现同时将一批.bmp文件转换成.mat格式
%% 功能:实现同时对一批.bmp文件的转换成.mat格式PicFormat = {'*.bmp','Bitmap image (*.bmp)';... '*.jpg','JPEG image (*.jpg)' ;... '*.*','All Files (*.*)'};% 利用uige...
Read More
posted @ 2015-08-17 11:23 丰玉清
Views(1030)
Comments(0)
Diggs(0)
公告