摘要: 转自作者:计算机的潜意识链接:http://www.cnblogs.com/subconscious/p/4107357.html在本篇文章中,我将对机器学习做个概要的介绍。本文的目的是能让即便完全不了解机器学习的人也能了解机器学习,并且上手相关的实践。这篇文档也算是EasyPR开发的番外篇,从这里... 阅读全文
posted @ 2015-12-24 09:55 清水汪汪 阅读(570) 评论(0) 推荐(0) 编辑
摘要: http://bookshadow.com/book/cat/互联网/信息技术(主要)文学/艺术常用外国语科普读物经典著作 阅读全文
posted @ 2015-12-07 17:06 清水汪汪 阅读(386) 评论(0) 推荐(0) 编辑
摘要: DescriptionThe C library functionvoid rewind(FILE *stream)sets the file position to the beginning of the file of the givenstream.DeclarationFollowing ... 阅读全文
posted @ 2015-11-30 21:03 清水汪汪 阅读(245) 评论(0) 推荐(0) 编辑
摘要: DescriptionThe C library functionFILE *freopen(const char *filename, const char *mode, FILE *stream)associates a newfilenamewith the given open stream... 阅读全文
posted @ 2015-11-30 20:41 清水汪汪 阅读(260) 评论(0) 推荐(0) 编辑
摘要: DescriptionThe C library functionFILE *tmpfile(void)creates a temporary file in binary update mode (wb+). The temporary file created is automatically ... 阅读全文
posted @ 2015-11-30 20:32 清水汪汪 阅读(304) 评论(0) 推荐(0) 编辑
摘要: 头文件:#include 定义函数:char * strdup(const char *s);函数说明:strdup()会先用malloc()配置与参数s 字符串相同的空间大小,然后将参数s 字符串的内容复制到该内存地址,然后把该地址返回。该地址最后可以利用free()来释放。返回值:返回一字符串指... 阅读全文
posted @ 2015-11-30 18:28 清水汪汪 阅读(9079) 评论(0) 推荐(0) 编辑
摘要: 命令行参数解析函数 —— getopt()getopt()函数声明如下:#include int getopt(int argc, char * const argv[], const char *optstring);extern char *optarg;extern int optind, o... 阅读全文
posted @ 2015-11-21 15:00 清水汪汪 阅读(614) 评论(0) 推荐(0) 编辑
摘要: Linux下常用文件解压(包括rpm、deb包)Linux下怎么解后缀名是gzip的文件?1.以.a为扩展名的文件:#tar xv file.a2.以.z为扩展名的文件:#uncompress file.Z3.以.gz为扩展名的文件:#gunzip file.gz4.以.bz2为扩展名的文件:#bu... 阅读全文
posted @ 2015-11-02 16:45 清水汪汪 阅读(512) 评论(0) 推荐(0) 编辑
摘要: 在win8下安装matlab7.0会出现一些兼容性的问题,需要设置系统环境变量,修改方式如下。1.设置环境变量,方法:在你的安装目录的\MATLAB7\bin\win32有一个叫做atlas_Athlon.dll的文件,复制它的地址(如:E:\MATLAB7\bin\win32\atlas_At... 阅读全文
posted @ 2015-10-29 19:53 清水汪汪 阅读(300) 评论(0) 推荐(0) 编辑
摘要: 廖老师良心之作,点个赞。 http://www.liaoxuefeng.com/wiki/0013739516305929606dd18361248578c67b8067c8c017b000 阅读全文
posted @ 2015-10-24 11:31 清水汪汪 阅读(141) 评论(0) 推荐(0) 编辑