
Matlab
junmuzi
这个作者很懒,什么都没留下…
展开
-
c/c++ for matlab (mexFunction)
Ref:http://blog.sina.com.cn/s/blog_7e71290d0101fkk7.htmlhttp://blog.sina.com.cn/s/blog_54dd80920102v28x.html====void mexFunction(int nlhs, mxArray *plhs[], int nrhs, const mxArray *prhs[])转载 2015-10-22 20:32:17 · 2446 阅读 · 0 评论 -
Debug mexFunction of matlab using gdb
original url:http://www.mathworks.com/help/matlab/matlab_external/debugging-on-linux-platforms.htmlDebugging on Linux PlatformsThe GNU® Debugger gdb, available on Linux® systems,转载 2015-10-24 17:34:24 · 1313 阅读 · 1 评论 -
Java HotSpot(TM) 64-Bit Server VM warning: Attempt to deallocate stack guard pages failed
When use matlab hitting "Java VM" error or warning, you could attempt to do as follows:# matlab -nojvmSo, won't hit java VM error or warning for ever.原创 2016-03-02 09:27:36 · 8109 阅读 · 2 评论 -
While reindexing loaded db appear: Java HotSpot(TM) 64-Bit Server VM warning: Attempt to allocate st
original url: https://issues.jboss.org/browse/EXOJCR-1837DescriptionWhile reindexing loaded DBs for query and read benchmarking of JCR 1.15.x appear:转载 2016-03-01 10:59:38 · 2617 阅读 · 0 评论 -
数学规划基础(北航)答案链接
百度文库中的几个比较好的数学规划基础(北航)答案链接:http://wenku.baidu.com/view/2b0362f98762caaedc33d40e.htmlhttp://wenku.baidu.com/link?url=cndA4B6GExlXGNSzg6IlyGORZJs05-VfxvzECbz6rDfgar9GfN8N-YK43w-x8NhB2I3bZD7i59N6bmVf原创 2016-04-13 14:35:06 · 2041 阅读 · 1 评论 -
caffe_.mexa64': libcaffe.so: cannot open shared object file: No such file or directory
Q:When run caffe with matlab interface, if we hit:caffe_.mexa64': libcaffe.so: cannot open shared object file: No such file or directory-----Solution:# vim /etc/profile, and add export LD_原创 2016-06-12 14:51:44 · 3703 阅读 · 0 评论 -
matlab for循环其实并不慢
matlab for循环其实并不慢,首先matlab是一个解释性语言,变量不需要提前申明,这也就是导致很多人误认为matlab for循环很慢的。其实是错误的认识!原因:因为matlab循环中变量没有预先声明,导致在循环中数组大小不断变化,当大小增长时,当前数组可能需要复制到新的更大的连续内存中,这显然会导致不必要的开销。如果数组长度较短,发生上述复制过程的次数少一些,而且发生时需要复制的内容原创 2016-09-23 11:12:08 · 19791 阅读 · 4 评论 -
MATLAB 中有哪些命令,让人相见恨晚?
Original url:https://www.zhihu.com/question/24499729超级大杀器在命令行敲入 dbstop if error如果运行出现错误,matlab会自动停在出错的那行,并且保存所有相关变量。再也不用设断点了有没有!!!bsxfun强大的、万能的、不同维数的矩阵扩展混合运算,从此告别矩阵转载 2016-09-24 09:35:24 · 1097 阅读 · 0 评论