摘要:
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
阅读(146)
评论(0)
推荐(0)
摘要:
简介 MEX从字面上是MATLAB和Excutable 两个单词的缩写。 MEX文件是由C或Fortran语言编写的源代码,经matlab编译器处理而生成的二进制文件。它是可以被matlab解释器自动装载并执行的动态链接程序,类似windows下的dll文件。 MEX文件实现了一种其它语言与MA... 阅读全文
posted @ 2014-09-28 23:45
DeepVL
阅读(627)
评论(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
阅读(2585)
评论(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
阅读(213)
评论(0)
推荐(0)
摘要:
微博上经常有同学分享一些公开课资源,包括可下载的网盘资源,课件资源等等,但是时间长了就忘了在哪里了。另外Coursera官方也推荐一些第三方批量下载工具,大家下载课程后也可以考虑共享到网盘里,减轻Coursera官方的下载压力。这里计划做一个汇总,包括一些佚名的来自网络上的课程资源分享,也欢迎大家提... 阅读全文
posted @ 2014-09-28 23:45
DeepVL
阅读(543)
评论(0)
推荐(0)
摘要:
https://github.com/julycoding/The-Art-Of-Programming-By-JulyJuly csdn blog: http://blog.csdn.net/v_JULY_v?viewmode=list 阅读全文
posted @ 2014-09-28 23:45
DeepVL
阅读(153)
评论(0)
推荐(0)
摘要:
http://www.slideshare.net/alexorso/how-to-get-my-paper-accepted-at-top-software-engineering-conferences 阅读全文
posted @ 2014-09-28 23:45
DeepVL
阅读(73)
评论(0)
推荐(0)
摘要:
这是一个UCB做分割做的结果比较早、比较好的分割方法,其工程网站为:http://www.cs.berkeley.edu/~fowlkes/BSE/上面有代码及一些简单的介绍,此代码基于以下三篇文章:(1): C. Fowlkes, J. Malik. "How Much Does Globaliz... 阅读全文
posted @ 2014-09-28 23:45
DeepVL
阅读(478)
评论(0)
推荐(0)
摘要:
方法一: 命令行方式输入uname -m若输出为x86_64,则为64bit;若输出为i686,则为32bit方法二:System Settings---->Details--->OS type,后面值即可看出是64bit还是32bit。 阅读全文
posted @ 2014-09-28 23:45
DeepVL
阅读(118)
评论(0)
推荐(0)
摘要:
Reference Style - All LevelsA Tour of C++(Bjarne Stroustrup) The "tour" is a quick (about 180 pages and 14 chapters) tutorial overview of all of stand... 阅读全文
posted @ 2014-09-28 23:45
DeepVL
阅读(183)
评论(0)
推荐(0)