摘要: % length(a) 获取字符串长度%d=strcat(a,c) 连接两个字符串,每个字符串最右边的空格被裁切%strcmp 比较两个字符串是否完全相等,是,返回真,否则,返回假%strncmp 比较两个字符串前n个字符是否相等,是,返回真,否则,返回假%strcmpi 比较两个字符串是... 阅读全文
posted @ 2014-09-28 23:45 DeepVL 阅读(323) 评论(0) 推荐(0) 编辑
摘要: 1 : filesep Directory separator for this platform. F = filesep returns the file separator character for this platform. The file separator is the cha... 阅读全文
posted @ 2014-09-28 23:45 DeepVL 阅读(204) 评论(0) 推荐(0) 编辑
摘要: https://class.coursera.org/ntumlone-001/lecture 阅读全文
posted @ 2014-09-28 23:45 DeepVL 阅读(89) 评论(0) 推荐(0) 编辑
摘要: http://metaoptimize.com/qa/questions/13774/courses-on-deep-learning 阅读全文
posted @ 2014-09-28 23:45 DeepVL 阅读(65) 评论(0) 推荐(0) 编辑
摘要: http://www.youku.com/playlist_show/id_21508721.html 阅读全文
posted @ 2014-09-28 23:45 DeepVL 阅读(250) 评论(0) 推荐(0) 编辑
摘要: 1 :GPU Computing with MATLABhttp://www.mathworks.com/videos/gpu-computing-with-matlab-81840.html?form_seq=conf882&type=large2:Parallel Computing Toolb... 阅读全文
posted @ 2014-09-28 23:45 DeepVL 阅读(239) 评论(0) 推荐(0) 编辑
摘要: matlab存储矩阵时按照列存储,比如:A =[1 2 3;4 5 6;7 8 9]即:A = 1 2 3 4 5 6 7 8 9则A(:)= 1 4 7 2 5 8 3 6 9 阅读全文
posted @ 2014-09-28 23:45 DeepVL 阅读(145) 评论(0) 推荐(0) 编辑
摘要: 简介 MEX从字面上是MATLAB和Excutable 两个单词的缩写。 MEX文件是由C或Fortran语言编写的源代码,经matlab编译器处理而生成的二进制文件。它是可以被matlab解释器自动装载并执行的动态链接程序,类似windows下的dll文件。 MEX文件实现了一种其它语言与MA... 阅读全文
posted @ 2014-09-28 23:45 DeepVL 阅读(592) 评论(0) 推荐(0) 编辑
摘要: 1 :im2double : [0,255]---->[0,1]2:grp2idx:[G,GN] = grp2idx(S) creates an index vector G from the grouping variableS.The result G is a vector taking in... 阅读全文
posted @ 2014-09-28 23:45 DeepVL 阅读(2522) 评论(0) 推荐(0) 编辑
摘要: 1:到以下网站下载安装(Download mingw-get-setup.exe):http://sourceforge.net/projects/mingw/files/安装完后,会跳出一个窗口,让你选择要安装的组件,选择mingw32-gcc-g++,右键,Mark for Installati... 阅读全文
posted @ 2014-09-28 23:45 DeepVL 阅读(179) 评论(0) 推荐(0) 编辑