自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(5)
  • 资源 (2)
  • 收藏
  • 关注

原创 PCA具体是如何降维的

一直没有搞清楚,PCA降维到底如何降维,参看了很多文章,如下是比较有用的文章链接:1.http://apps.hi.baidu.com/share/detail/484839692.http://blog.csdn.net/royalvane/article/details/68642713.http://blog.sina.com.cn/s/blog_6bc8a3ed0100zy0l

2011-12-06 10:15:47 2517

原创 通用的双向链表,算是对前两种总结的过程,还不成熟请指教

链表的 头文件/* * Copyright (c) 2009-~ Du Jinhui * * This source code is released for free distribution under the terms of the * GNU General Publi

2011-07-11 10:53:57 347

原创 用双向链表对字符串进行排序

#include #include #include typedef struct string{ char *s;  struct string *next; struct string *prior;}str;void PrintLink(str*  node);str*

2011-07-11 10:46:18 657

原创 用双向链表对整形数据进行排序

#include"stdio.h"#include"stdlib.h"#include"conio.h"typedef struct node{ struct node *prev; struct node *next; int Data;}link,*pLink;pLink I

2011-07-11 10:42:12 459

原创 文章

<br />‘IEEE Transactions on Pattern And Machine Intelligence’<br /> ‘IEEE Transactions on Image Processing’

2011-01-05 10:30:00 270

PCA降维(openCV)

openCV写的PCA降维代码,每一行都有注释,有openCV基础的人都能够看懂

2011-12-06

多文件遍历查找单词

在一个文件夹下面的多个文件内容的查找,可以查找单词所在的文件,及所在行数

2011-12-06

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除