https://github.com/alro10/genetic-algorithm-optimization
Genetic Algorithm (GA) for 2D periodic function
https://github.com/alro10/genetic-algorithm-optimization
dimension-optimization-problem evolutionary-algorithms genetic-algorithm matlab optimization-algorithms
Last synced: 8 months ago
JSON representation
Genetic Algorithm (GA) for 2D periodic function
- Host: GitHub
- URL: https://github.com/alro10/genetic-algorithm-optimization
- Owner: Alro10
- Created: 2017-04-29T17:58:59.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2019-04-10T02:17:04.000Z (about 7 years ago)
- Last Synced: 2025-01-20T13:27:28.021Z (over 1 year ago)
- Topics: dimension-optimization-problem, evolutionary-algorithms, genetic-algorithm, matlab, optimization-algorithms
- Language: MATLAB
- Homepage:
- Size: 72.3 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# genetic-algorithm-optimization
Genetic Algorithm (GA) is a common technique in Evolutionary Computation using to solve optimization problems. When I was studying my master degree I did a GA to solve two dimension optimization problem for f(x,y). The function is periodic, and the objective is to find a maximum of this function between [-1,2].
```python
f(x,y) = x*sin(4*pi*x) - y*sin(4*pi+pi) + 1
```
Run by yourself!