Android with root Git for version control Lircd with Raspberry Pi for IR receiver and sender Tips for Windows Depolying your own password management tool -- KeeWeb Depoly your flask app into Heroku Fix shit IE code manually ISBN to Book Category by Scraping DangDang A Generic Makefile for C/C++ Program Configure Raspberry pi Remove watermark with PyPDF2 tips for docker Anaconda+TensorFlow+CUDA Snippets Configure Remote Mathematica Kernel Build your own ngrok server Access Array SSL VPN 使用Rstudio制作html5幻灯片 tips for Mac OS X system Tips for ipython notebook 配置Ubuntu server + Openbox (Obuntu) tips for Vimperator tips for Vim 安装CUDA My First Jekyll Blog rsync常见选项 在Linux中读取Ipod touch的文件 tip for texmacs 在VPS上建站的一些tip Gnuplot绘图札记 Samba系统和autofs自动挂载 Linux中alsamixer声卡无法录音 搭建自己的RSS订阅器——Tiny Tiny RSS Grub2引导安装Ubuntu awk tips 将Ubuntu系统装入U盘 The Great Rtorrent 编译GCC 再这样剁手!!!该死的libgd 使用ulimit进行资源限制 使用SSH代理上IPV6 使用RCurl抓取网页数据 修复Ubuntu Grub记 openbox中的文件关联 在Ubuntu 12.04下编译qtiplot 处理BCM4312网卡驱动纪实 配置我的Ubuntu Server记 Cygwin杂记 Linux 使普通用户具有以超级权限执行脚本 让firefox自定义地处理文件类型 WordPress优秀主题及插件 在phpcloud上搭建wordpress UBUNTU下用pptpd做VPN server ubuntu升级内核过后的一些问题 安装telnet服务 kubuntu札记 64位kubuntu札记 统计软件R Virtualbox stardict星际译王 Ubuntu重装windows系统后的grub引导修复 SSH服务及花生壳域名解析 采用cbp2make工具由code::blocks工程创建makefile文件 UBUNTU 札记

MATLAB 常用函数

2012年07月10日

1、clc 命令clear command window则只是清理command window 中的内容,而内存中的变量不清除。 clear是清除变量,一般m文件前都要的,不然容易发生变量出错。 另外还有clf清除当前激活的figure。

2、 b=unique(a) 求不同元 b=isnan(a) 判断是否为非数 b=isempty(a) 判断非空 b=sortrows(a,[3 4])%按第三列主要排序,第四列次要排序,升序

3、进制转换

函数名    功能描述
hex2num    十六进制到IEEE标准下浮点数的轮换  
hex2dec    十六进制到十进制的轮换
dec2hex    十进制到十六进制的轮换

4、cputime 显示Matlab启动后所占用的CPU时间;

tic,toc 秒表计时,tic是开始,toc是结束;

clock,etime 前者显示系统时间,后者计算两次调用clock之间的时间差。

eg:

t0 = cputime; 你的程序;time=cputime-t0;
tic; 你的程序;toc;
t0 = clock;你的程序;time = etime(clock, t0);

5、矩阵倒置

若进行上下倒置,则可用函数flipud。

也可以通过函数flipdim等函数实现。

举例:X =[ 1 4 ; 2 5 ; 3 6],则fliplr(x) 则变为 [4 1; 5 2 ; 6 3]。 若flipud(x) 则变为 [3 6; 2 5; 1 4]。

6、setdiff 返回两个向量中的不同元素

c = setdiff(A, B) 返回在A中有,而B中没有的值,结果向量将以升序排序返回。在集合论中,c = A - B。A和B也可以是字符串细胞数组。

c = setdiff(A, B, ‘rows’) 当A和B是具有相同列数的矩阵时,返回A中有而B中没有的那些行。

[c,i] = setdiff(…) 同时返回一个索引向量,如c = a(i) or c = a(i, ![:)] 。

7、交运算函数intersect

intersect:Set intersection of two vectors Syntax

c = intersect(A,B)
c = intersect(A,B,'rows')
[c,ia,ib] = intersect(...)

8、求分位数

w为数据序列,Q1为上四分位值,Q3为下四分位值,计算如下:

 Q1=prctile(w,25);
 Q3=prctile(w,75);
 prctile( )函数实现计算样本的百分位数功能

9、由向量生成网

[X,Y] = meshgrid(x,y)