码迷,mamicode.com
首页 > 编程语言 > 详细

swift算法手记-8

时间:2016-01-31 13:35:59      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:

if answer==nil{
            //计算方程的解
            var p0:Double=leftbound!
            var p1:Double=rightbound!
            var q0:Double = comresult(p0)
            var q1:Double = comresult(p1)
            var p:Double=0
            var q:Double=0
            
            for i in 2...trycount{
                
                p = secantcompresult(p0, myp1:p1)
                if abs(p-p1) < accuracy {
                    answer=p0
                    break
                }
                q = comresult(p)
                if q * q1 < 0 {
                    p0=p1
                    q0=q1
                }
                p1=p
                q1=q

            }
        }
        if let ans=answer{
            //方程有解
            result.stringValue="解:"+String(stringInterpolationSegment: ans)+"   "
            result.stringValue += "解代入方程的值:"+String(stringInterpolationSegment:comresult(ans))
        }

本博客所有内容是原创,如果转载请注明来源

http://blog.csdn.net/myhaspl/

技术分享

swift算法手记-8

标签:

原文地址:http://blog.csdn.net/myhaspl/article/details/50614014

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!