python中黄金分割法实现方法


Posted in Python onMay 06, 2015

本文实例讲述了python中黄金分割法实现方法。分享给大家供大家参考。具体实现方法如下:

''' a,b = bracket(f,xStart,h)
  Finds the brackets (a,b) of a minimum point of the
  user-supplied scalar function f(x).
  The search starts downhill from xStart with a step
  length h.
  x,fMin = search(f,a,b,tol=1.0e-6)
  Golden section method for determining x that minimizes
  the user-supplied scalar function f(x).
  The minimum must be bracketed in (a,b).
'''    
from math import log, ceil
def bracket(f,x1,h):
  c = 1.618033989 
  f1 = f(x1)
  x2 = x1 + h; f2 = f(x2)
 # Determine downhill direction and change sign of h if needed
  if f2 > f1:
    h = -h
    x2 = x1 + h; f2 = f(x2)
   # Check if minimum between x1 - h and x1 + h
    if f2 > f1: return x2,x1 - h 
 # Search loop
  for i in range (100):  
    h = c*h
    x3 = x2 + h; f3 = f(x3)
    if f3 > f2: return x1,x3
    x1 = x2; x2 = x3
    f1 = f2; f2 = f3
  print "Bracket did not find a mimimum"    
def search(f,a,b,tol=1.0e-9):
  nIter = int(ceil(-2.078087*log(tol/abs(b-a)))) # Eq. (10.4)
  R = 0.618033989
  C = 1.0 - R
 # First telescoping
  x1 = R*a + C*b; x2 = C*a + R*b
  f1 = f(x1); f2 = f(x2)
 # Main loop
  for i in range(nIter):
    if f1 > f2:
      a = x1
      x1 = x2; f1 = f2
      x2 = C*a + R*b; f2 = f(x2)
    else:
      b = x2
      x2 = x1; f2 = f1
      x1 = R*a + C*b; f1 = f(x1)
  if f1 < f2: return x1,f1
  else: return x2,f2

希望本文所述对大家的Python程序设计有所帮助。

Python 相关文章推荐
使用PDB模式调试Python程序介绍
Apr 05 Python
Python建立Map写Excel表实例解析
Jan 17 Python
TensorFlow中权重的随机初始化的方法
Feb 11 Python
Python迭代器与生成器用法实例分析
Jul 09 Python
python如何生成网页验证码
Jul 28 Python
win7 x64系统中安装Scrapy的方法
Nov 18 Python
Python获取网段内ping通IP的方法
Jan 31 Python
python按修改时间顺序排列文件的实例代码
Jul 25 Python
Python中filter与lambda的结合使用详解
Dec 24 Python
Python requests.post方法中data与json参数区别详解
Apr 30 Python
删除pycharm鼠标右键快捷键打开项目的操作
Jan 16 Python
Python中os模块的简单使用及重命名操作
Apr 17 Python
使用rpclib进行Python网络编程时的注释问题
May 06 #Python
pymongo给mongodb创建索引的简单实现方法
May 06 #Python
Python中用PIL库批量给图片加上序号的教程
May 06 #Python
python写入中英文字符串到文件的方法
May 06 #Python
python使用xlrd模块读写Excel文件的方法
May 06 #Python
在Python中使用全局日志时需要注意的问题
May 06 #Python
python通过post提交数据的方法
May 06 #Python
You might like
PHP的FTP学习(一)
2006/10/09 PHP
解决MySQL中文输出变成问号的问题
2008/06/05 PHP
PHPMyadmin 配置文件详解(配置)
2009/12/03 PHP
jQuery弹出层插件简化版代码下载
2008/10/16 Javascript
学习ExtJS Panel常用方法
2009/10/07 Javascript
各浏览器对document.getElementById等方法的实现差异解析
2013/12/05 Javascript
基于jQuery通过jQuery.form.js插件使用ajax提交form表单
2015/08/17 Javascript
盘点javascript 正则表达式中 中括号的【坑】
2016/03/16 Javascript
[原创]Bootstrap 中下拉菜单修改成鼠标悬停直接显示
2016/04/14 Javascript
jQuery使用$获取对象后检查该对象是否存在的实现方法
2016/09/04 Javascript
vue项目中的webpack-dev-sever配置方法
2017/12/14 Javascript
JavaScript多态与封装实例分析
2018/07/27 Javascript
修改Vue打包后的默认文件名操作
2020/08/12 Javascript
vue3.0中使用element的完整步骤
2021/03/04 Vue.js
关于Python中异常(Exception)的汇总
2017/01/18 Python
Python中文件I/O高效操作处理的技巧分享
2017/02/04 Python
python分批定量读取文件内容,输出到不同文件中的方法
2018/12/08 Python
Django中自定义admin Xadmin的实现代码
2019/08/09 Python
PyCharm汉化安装及永久激活详细教程(靠谱)
2020/01/16 Python
python图形界面开发之wxPython树控件使用方法详解
2020/02/24 Python
Python过滤掉numpy.array中非nan数据实例
2020/06/08 Python
Python使用windows设置定时执行脚本
2020/11/12 Python
详解基于 Canvas 手撸一个六边形能力图
2019/09/02 HTML / CSS
原生canvas制作画图小工具的踩坑和爬坑
2020/06/09 HTML / CSS
优秀毕业生推荐信范文
2014/03/07 职场文书
房地产公司见习自我鉴定
2014/04/28 职场文书
1亿有多大教学反思
2014/05/01 职场文书
2014年社区居委会主任重阳节讲话稿
2014/09/25 职场文书
运动会铅球比赛加油稿
2014/09/26 职场文书
诉讼授权委托书范本
2014/10/05 职场文书
党的群众路线教育实践活动总结大会主持词
2014/10/30 职场文书
写给老婆的保证书
2015/02/27 职场文书
中学教师教学工作总结
2015/08/13 职场文书
同学联谊会邀请函
2019/06/24 职场文书
详解PHP Swoole与TCP三次握手
2021/05/27 PHP
浅析Python OpenCV三种滤镜效果
2022/04/11 Python