NLopt 最小化特征值,Python
NLopt minimize eigenvalue, Python
我有一些矩阵,其中的元素可以定义为算术表达式,并编写了 Python 代码来优化这些表达式中的参数,以最小化矩阵的特定特征值。我已经使用 scipy
来执行此操作,但想知道 NLopt
是否可行,因为我想尝试更多它具有的算法(无衍生变体)。
在 scipy
我会做这样的事情:
import numpy as np
from scipy.linalg import eig
from scipy.optimize import minimize
def my_func(x):
y, w = x
arr = np.array([[y+w,-2],[-2,w-2*(w+y)]])
ev, ew=eig(arr)
return ev[0]
x0 = np.array([10, 3.45]) # Initial guess
minimize(my_func, x0)
在 NLopt 中我试过这个:
import numpy as np
from scipy.linalg import eig
import nlopt
def my_func(x,grad):
arr = np.array([[x[0]+x[1],-2],[-2,x[1]-2*(x[1]+x[0])]])
ev, ew=eig(arr)
return ev[0]
opt = nlopt.opt(nlopt.LN_BOBYQA, 2)
opt.set_lower_bounds([1.0,1.0])
opt.set_min_objective(my_func)
opt.set_xtol_rel(1e-7)
x = opt.optimize([10.0, 3.5])
minf = opt.last_optimum_value()
print "optimum at ", x[0],x[1]
print "minimum value = ", minf
print "result code = ", opt.last_optimize_result()
这个returns:
ValueError: nlopt invalid argument
NLopt 能处理这个问题吗?
my_func 应该 return double, posted sample return 复杂
print(type(ev[0]))
None
<class 'numpy.complex128'>
ev[0]
(13.607794065928395+0j)
my_func 的正确版本:
def my_func(x, grad):
arr = np.array([[x[0]+x[1],-2],[-2,x[1]-2*(x[1]+x[0])]])
ev, ew=eig(arr)
return ev[0].real
更新样本 returns:
optimum at [ 1. 1.]
minimum value = 2.7015621187164243
result code = 4
我有一些矩阵,其中的元素可以定义为算术表达式,并编写了 Python 代码来优化这些表达式中的参数,以最小化矩阵的特定特征值。我已经使用 scipy
来执行此操作,但想知道 NLopt
是否可行,因为我想尝试更多它具有的算法(无衍生变体)。
在 scipy
我会做这样的事情:
import numpy as np
from scipy.linalg import eig
from scipy.optimize import minimize
def my_func(x):
y, w = x
arr = np.array([[y+w,-2],[-2,w-2*(w+y)]])
ev, ew=eig(arr)
return ev[0]
x0 = np.array([10, 3.45]) # Initial guess
minimize(my_func, x0)
在 NLopt 中我试过这个:
import numpy as np
from scipy.linalg import eig
import nlopt
def my_func(x,grad):
arr = np.array([[x[0]+x[1],-2],[-2,x[1]-2*(x[1]+x[0])]])
ev, ew=eig(arr)
return ev[0]
opt = nlopt.opt(nlopt.LN_BOBYQA, 2)
opt.set_lower_bounds([1.0,1.0])
opt.set_min_objective(my_func)
opt.set_xtol_rel(1e-7)
x = opt.optimize([10.0, 3.5])
minf = opt.last_optimum_value()
print "optimum at ", x[0],x[1]
print "minimum value = ", minf
print "result code = ", opt.last_optimize_result()
这个returns:
ValueError: nlopt invalid argument
NLopt 能处理这个问题吗?
my_func 应该 return double, posted sample return 复杂
print(type(ev[0]))
None
<class 'numpy.complex128'>
ev[0]
(13.607794065928395+0j)
my_func 的正确版本:
def my_func(x, grad):
arr = np.array([[x[0]+x[1],-2],[-2,x[1]-2*(x[1]+x[0])]])
ev, ew=eig(arr)
return ev[0].real
更新样本 returns:
optimum at [ 1. 1.]
minimum value = 2.7015621187164243
result code = 4