随笔分类 -  matlab

matlab函数每天进步一点点
摘要:1. 读mp4视频 : xyloObj = VideoReader('su35.mp4'); 链接 2. 查看有几个相同的函数和当前使用的函数是哪个路径下的: which -all xxx; which xxx 阅读全文

posted @ 2017-12-12 11:23 一动不动的葱头 阅读(235) 评论(0) 推荐(0)

matlab handle plot
摘要:https://cn.mathworks.com/help/matlab/ref/plotyy.html 阅读全文

posted @ 2017-07-21 10:19 一动不动的葱头 阅读(300) 评论(0) 推荐(0)

matlab 读取fig数据
摘要:单曲线: open('figname.fig');h_line=get(gca,'Children');%get line handlesxdata=get(h_line,'Xdata');ydata=get(h_line,'Ydata'); 参考地址: 阅读全文

posted @ 2017-07-06 16:42 一动不动的葱头 阅读(968) 评论(0) 推荐(0)

dlmread matlab
摘要:读逗号文件 阅读全文

posted @ 2017-04-07 09:20 一动不动的葱头 阅读(878) 评论(0) 推荐(0)

matlab legend
摘要:http://www.ilovematlab.cn/thread-65324-1-1.html 阅读全文

posted @ 2017-02-21 17:32 一动不动的葱头 阅读(166) 评论(0) 推荐(0)

matlab filter
摘要:https://cn.mathworks.com/help/images/ref/fspecial.html 阅读全文

posted @ 2016-09-24 20:37 一动不动的葱头 阅读(231) 评论(0) 推荐(0)

colormap
摘要:http://cn.mathworks.com/help/matlab/ref/colormap.html 阅读全文

posted @ 2016-09-17 21:38 一动不动的葱头 阅读(161) 评论(0) 推荐(0)

matlab caffe
摘要:http://tutorial.caffe.berkeleyvision.org/tutorial/interfaces.html 阅读全文

posted @ 2016-07-09 13:55 一动不动的葱头 阅读(115) 评论(0) 推荐(0)

matlab 设置路径 Linux
摘要:http://carmaux.cs.gsu.edu/change_MATLAB_default_dir.html 阅读全文

posted @ 2016-07-08 18:23 一动不动的葱头 阅读(761) 评论(0) 推荐(0)

matlab 不要图像界面
摘要:参考文献matlab -nodesktop 阅读全文

posted @ 2016-07-08 18:00 一动不动的葱头 阅读(239) 评论(0) 推荐(0)

贝努利概率 matlab
摘要:参考:http://zhidao.baidu.com/link?url=3XZm35XpFf_kbADwDHEERtgFMKqHftiS5SyTCWcBtlF7B7zeNgoNqIzXxpJsHtBIGdofik99hN3-e_Gs9aYKSTbvgCbZ0Gp49hiUtP_L5hK 阅读全文

posted @ 2016-07-02 17:31 一动不动的葱头 阅读(438) 评论(0) 推荐(0)

matlab 相同函数名解决
摘要:http://jingyan.baidu.com/article/1612d500a23a8ce20e1eee07.html 阅读全文

posted @ 2016-06-26 09:42 一动不动的葱头 阅读(722) 评论(0) 推荐(0)

特征提取两个错误原因
摘要: 阅读全文

posted @ 2016-06-23 16:30 一动不动的葱头 阅读(405) 评论(0) 推荐(0)

matlab print,disp,fprint,fscan
摘要:http://wenku.baidu.com/link?url=ZvpdbnbozLtaSQA011ZBl5tbpqN62nu8VH-sBZYDQkv4KaaIwnaSXg5vPDgxTjudG-QncaWE1p9Jba-PL4AZvI0Q7Lo34iTMlbItANI1mHe ABP-108 阅读全文

posted @ 2016-05-22 09:06 一动不动的葱头 阅读(364) 评论(0) 推荐(0)

matlab自带princomp(PCA降维方式)
摘要:matlab 中自带的函数就不必怀疑。 princomp:principal componet analysis (PCA). [COEFF,SCORE,latent,tsquare]=princomp(X); 参数: %%%%%%%%%%%%%%%%%% INPUT: X是数据:n*p,其中n代表 阅读全文

posted @ 2016-05-18 12:03 一动不动的葱头 阅读(4675) 评论(0) 推荐(0)

pca
摘要:http://blog.sina.com.cn/s/blog_61b8694b0101jg4f.html 阅读全文

posted @ 2016-05-18 10:27 一动不动的葱头 阅读(161) 评论(0) 推荐(0)

matlab 字符分割
摘要:http://blog.csdn.net/gotomic/article/details/7898307 注意到以'.'分割时,写成'\.'。前者代表其他含义。可通过help regexp来查询。 例子:字符串分割, str = deblank(line);%去掉两端空格 index_reg=reg 阅读全文

posted @ 2016-05-16 11:46 一动不动的葱头 阅读(421) 评论(0) 推荐(0)

matlab cell
摘要:http://www.cnblogs.com/JohnShao/archive/2011/08/12/2135657.html 阅读全文

posted @ 2016-05-11 23:11 一动不动的葱头 阅读(116) 评论(0) 推荐(0)

matlab linux 快捷键设置——有问题还是要解决
摘要:http://46aae4d1e2371e4aa769798941cef698.devproxy.yunshipei.com/zyh821351004/article/details/45772345 阅读全文

posted @ 2016-05-11 22:27 一动不动的葱头 阅读(296) 评论(0) 推荐(0)

im2col函数
摘要:http://cn.mathworks.com/help/images/ref/im2col.html?requestedDomain=www.mathworks.com 阅读全文

posted @ 2016-03-03 16:39 一动不动的葱头 阅读(213) 评论(0) 推荐(0)

导航