
matlab
muruogoogle
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
matlab struct 理解
1》保存数据到 mat 文件 2》 生成数据结构: 3》 操作属性: 4》 加载 mat 文件 load name.mat 参考自:http://jingyan.baidu.com/article/414eccf6120cc16b431f0af9.html转载 2014-12-21 10:32:07 · 1222 阅读 · 0 评论 -
matlab 常用的函数理解
1》 cumsum 2》原创 2014-12-21 13:03:17 · 553 阅读 · 0 评论 -
mac 独立安装 GCC 解决 <omp.h> 缺失问题
在 mex 文件当中,如果引用 #include 在 mac 会出现这个错误,因为 MAC 没有使用 GCC 而 使用 clang fatal error: 'omp.h' file not found 1》 安装 GCC 下载地址: http://hpc.sourceforge.net/ gunzip gcc-4.9-bin.tar.gz sudo原创 2014-12-21 16:02:50 · 9393 阅读 · 2 评论 -
matlab mex 文件
1》mex HelloWorld: vim mexHelloWorld.c 1 // 标准需要引入的头文件 2 #include "mex.h" 3 // 入口函数,相当于 main 函数一样 4 void mexFunction(int nlhs,mxArray *plhs[],int nrhs,co原创 2014-12-27 10:20:41 · 1164 阅读 · 0 评论