志不达者智不坚 言不信者行不果
志不达者智不坚 言不信者行不果
概要
博文
About
分类
归档
标签
Light
Dark
Automatic
scheme
尾递归
2015-5-13,Wednesday 预计阅读时间: 1 minutes and 26 seconds with 318 words. 本文总阅读量
次
programme
,
数学
尾递归的好处就是快速计算,尾递归实际上是在递归计算的过程中, (印象中递归过程[表示语法形式-调用自己]和递归计算过程[表正线性方式 和非线性方式]是不一样的), 加入了迭代的思想,不断的修改了product和counter的值, 不需要树形展开。
… 阅读全文>>
求定积分
2015-5-13,Wednesday 预计阅读时间: 10 minutes and 55 seconds with 2405 words. 本文总阅读量
次
programme
,
数学
… 阅读全文>>
找出函数的不动点--Navier-Stokes方程
2015-5-12,Tuesday 预计阅读时间: 1 minutes and 38 seconds with 362 words. 本文总阅读量
次
programme
,
方法
,
数学
##Beautiful code! 数x为函数的f的不动点(f可以代表N-S方程),如果满足f(x)=x,则称x 为函数f的不动点。 性质 f(x),f(f(x)),f(f(f(x)))…., change the x’s value if f(x)=x,then you found!
… 阅读全文>>
折半查找有条件
2015-5-12,Tuesday 预计阅读时间: 0 minutes and 40 seconds with 147 words. 本文总阅读量
次
programme
,
数学
You want to solve F(x)=0, if f(a)<0<f(b), so the value must be inside the [a,b].
… 阅读全文>>
So beautiful code
2015-5-12,Tuesday 预计阅读时间: 0 minutes and 39 seconds with 143 words. 本文总阅读量
次
programme
,
数学
So beautiful (define (f x y) (define (f-helper a b) (+ (* (square a)) (* y b) (* a b))) (f-helper (+ 1 (* x y)) (- 1 y)))
… 阅读全文>>
«
Cite
×