python實現模擬退火算法

問題python 求F(x)在定義域[5,8]上的最大值程序員 源碼dom # 模擬退火法 import numpy as np import math # 定義域x從5到8閉區間 BOUND = [5,8] tmp = 1e2 tmp_min = 1e-3 alpha = 0.98 beta = 1 def F(x): return math.sin(x*x)+2.0*math.
相關文章
相關標籤/搜索