
优化
Minkowski_lin
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Python 实现 遗传算法(GA)
Python 实现 遗传算法(GA) Python Code (GA) """遗传算法实现求函数极大值""" #from numba import jit import numpy as np import matplotlib.pyplot as plt class GA(): '''genetic algorithm''' def __init__(self,targ...原创 2019-02-18 17:02:10 · 896 阅读 · 0 评论 -
Lingo非线性规划
max = 98 * x1 + 277 * x2 - x1 ^ 2 - 0.3 * x1 * x2 - 2 * x2 ^ 2; x1 + x2 <= 100; x1 <= 2 * x2; @gin(x1); @gin(x2); min = x1 ^2 + x2 ^ 2 + x3 ^ 2 + 8; x1 ^ 2 - x2 + x3 ^ 2 >= 0; x1 + x2 ^ 2...原创 2019-06-27 17:29:52 · 4649 阅读 · 1 评论