微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

swift算法手记-8

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/

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐