Here’s just a fraction of what you can do with linear algebraThe next time someone wonders what the point of linear algebra is, send them here. I writ...
分类:
其他好文 时间:
2015-09-27 20:07:55
阅读次数:
248
Simply a revise of a genius Greedy algorithm seen on LeetCode - linear walking.class Solution {public: /** * @param matrix: A list of lists of ...
分类:
其他好文 时间:
2015-09-23 06:46:28
阅读次数:
199
Linear and Geometric Algebra by Alan Macdonaldhttp://faculty.luther.edu/~macdonal/laga/
分类:
其他好文 时间:
2015-09-23 06:45:14
阅读次数:
113
最近再看face alignment的相关文章,目前比较流行的算法都是基于(Cascaded pose regression,CPR)[1]的框架上做的,该算法之所以流行的原因是简单高效。CPR分为训练和检测两个部分,首先介绍检测流程:face alignment的目的是估计向量face shape...
分类:
其他好文 时间:
2015-09-22 16:13:36
阅读次数:
290
Given an unsorted array, find the maximum difference between the successive elements in its sorted form.Try to solve it in linear time/space.Return 0 ...
分类:
其他好文 时间:
2015-09-21 19:17:23
阅读次数:
124
语法:选择器{ background:linear-gradien(线性渐变的方向,起点颜色,终点颜色); }第一个参数:[可选参数,默认从上到下] 线性渐变的方向:top,bottom,left,right,top left;第二个和第三个参数:起点颜色和终点颜色,其实中间可以插入更多的颜...
分类:
Web程序 时间:
2015-09-21 06:56:42
阅读次数:
150
Given an integer array of sizen, find all elements that appear more than? n/3 ?times. The algorithm should run in linear time and in O(1) space.分析:和Ma...
分类:
其他好文 时间:
2015-09-20 17:40:58
阅读次数:
114
CSS3 Gradient 分为linear-gradient(线性渐变)和radial-gradient(径 向渐变)。而我们今天主要是针对线性渐变来剖析其具体的用法。为了更好的应用CSS3 Gradient,我们需要先了解一下目前的几种现代浏览器的内核,主要有Mozilla(Firefox,Fl...
分类:
Web程序 时间:
2015-09-20 11:58:22
阅读次数:
218
LDA (Linear Discriminant Analysis) 线性判别分析[1]http://blog.csdn.net/ffeng271/article/details/7353834
分类:
其他好文 时间:
2015-09-17 19:35:09
阅读次数:
119
Given an integer array of size n, find all elements that appear more than ? n/3 ? times. The algorithm should run in linear time and in O(1) space.解题思...
分类:
编程语言 时间:
2015-09-15 17:53:48
阅读次数:
199