swift算法手记-7

前端之家收集整理的这篇文章主要介绍了swift算法手记-7前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
  1. @IBAction func compute(sender: AnyObject) {
  2. // 19*x^7-31*x^5+16*x^2+7*x-90=0
  3. // newton迭代法求一元方程的解,最大求解范围[-100000,100000]
  4. mytitle.stringValue="19*x^7-31*x^5+16*x^2+7*x-90=0"
  5. let trycount = 120
  6. var accuracy: Double = 1e-15
  7. var answer: Double?=nil
  8. // 估计解范围
  9. var leftbound:Double?=nil
  10. var rightbound:Double?=nil
  11. for var bound:Double=1;bound<10000000;bound*=10{
  12. let leftres=comresult(-bound)
  13. let rightres=comresult(bound)
  14. if (leftres*rightres) < 0 {
  15. leftbound = (-bound)
  16. rightbound = bound
  17. break
  18. }
  19. else if leftres==0{
  20. answer=leftbound
  21. break
  22. }
  23. else if rightres==0{
  24. answer=rightbound
  25. break
  26. }
  27. }
  28. if (leftbound==nil || rightbound==nil){
  29. return
  30. }
  31. var center=leftbound!+(rightbound!-leftbound!)/2
  32. let centres:Double=comresult(center)
  33. if centres==0 {
  34. answer=center
  35. }
  36. if centres*comresult(rightbound!)<0{
  37. leftbound=center
  38. }
  39. else if centres*comresult(leftbound!)<0{
  40. rightbound=center
  41. }
  42.  
  43. if answer==nil{
  44. //计算方程的解
  45. var p0=leftbound!+(rightbound!-leftbound!)/2
  46. var p:Double
  47. for i in 1...trycount{
  48. p = newtoncompresult(p0)
  49. if abs(p-p0) < accuracy {
  50. answer=p0
  51. break
  52. }
  53. p0=p
  54. }
  55. }
  56. if let ans=answer{
  57. //方程有解
  58. result.stringValue="解:"+String(stringInterpolationSegment: ans)+" "
  59. result.stringValue += "解代入方程的值:"+String(stringInterpolationSegment:comresult(ans))
  60. }
  61. }


用牛顿迭代法解非线性方程



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

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

猜你在找的Swift相关文章