pythonshellcjavaclassRecursive{
publicstaticvoidmain(String[]args){
System.out.println(recursive(5));
}
publicstaticintrecursive(inti){
if(i==1){
return1;
}
returni*recursive(i-1);
}
}
分类:
其他好文 时间:
2016-10-21 01:59:14
阅读次数:
213
接上篇 ORTHOGONAL PROCRUSTES PROBLEM 普式分析(Procrustes analysis) 纠结了好久,还是没能完全看懂。。 奇异值分解(singular value decomposition):,其中、 弗罗贝尼乌斯范数(Frobenius norm): COUNTI ...
分类:
移动开发 时间:
2016-10-09 16:55:38
阅读次数:
161
梯度下降优化算法综述 参考:http://blog.csdn.net/heyongluoyao8/article/details/52478715 该文翻译自An overview of gradient descent optimization algorithms。 总所周知,梯度下降算法是机器 ...
分类:
编程语言 时间:
2016-10-08 16:52:16
阅读次数:
488
翻译自Euclidean Distance Matrices: Essential theory, algorithms, and applications EDMs是点之间的平均距离矩阵。该文的目标是介绍EMD在信号处理领域的应用,展示EDM如何被用来设计算法--对距离数据进行修复和去噪。同时,介 ...
分类:
移动开发 时间:
2016-10-08 13:40:26
阅读次数:
273
https://www.analyticsvidhya.com/blog/2015/08/common-machine-learning-algorithms/?spm=5176.100239.blogcont61037.12.0MhmIg https://yq.aliyun.com/article ...
分类:
编程语言 时间:
2016-10-07 01:52:20
阅读次数:
860
Emuskald considers himself a master of flow algorithms. Now he has completed his most ingenious program yet — it calculates the maximum flow in an und ...
分类:
其他好文 时间:
2016-10-03 00:16:21
阅读次数:
197
链接:http://www.zhihu.com/question/29885222/answer/100043031 首先一切建立在相机模型 x = kPX 上 x,X分别代表图片和空间中的二维三维齐次坐标, k为相机内参矩阵, P = [R | t] 为空间坐标系到相机坐标系的 orientati ...
分类:
其他好文 时间:
2016-10-02 12:55:29
阅读次数:
203
We began our study of algorithmic techniques with greedy algorithms, which in some sense form the most natural approach to algorithm design. Faced wit ...
分类:
其他好文 时间:
2016-10-01 21:53:20
阅读次数:
246
最近在学习算法,跟着<Algorithms>这本书,可能是自己水平不够吧,看完排序算法后各种,希尔,归并,快排,堆的实现在脑子里乱成一锅粥,所以就打算大概总结一下,不求精确,全面,只想用平白的语言来理一理,如有错误之处,请直言。 为什么所有的算法书籍都重墨介绍排序,一、对一组数据进行排序在生活中是如 ...
分类:
编程语言 时间:
2016-09-29 07:45:41
阅读次数:
271
转录因子结合位点识别: transcription factor affinity prediction (TRAP) MEME-ChIP algorithms transcription factor affinity prediction (TRAP) MEME-ChIP algorithms ...
分类:
其他好文 时间:
2016-09-25 22:03:16
阅读次数:
160