An open API service indexing awesome lists of open source software.

https://github.com/agneay/optimization-techniques

A bunch of MATLAB files for verifying answers to Optimization Problems
https://github.com/agneay/optimization-techniques

matlab optimization-methods optimization-techniques

Last synced: 5 months ago
JSON representation

A bunch of MATLAB files for verifying answers to Optimization Problems

Awesome Lists containing this project

README

          

# Optimization Techniques
A bunch of MATLAB files for checking answer to Optimization Problems [![Open in MATLAB Online](https://www.mathworks.com/images/responsive/global/open-in-matlab-online.svg)](https://matlab.mathworks.com/open/github/v1?repo=agneay/Optimization-Techniques)

> NOTE: Even though this was created for my University Assignments, It will be maintained in such a way that the general open source public is benefitted
> > Repo still in development stages, some files are yet to be added.

![maintained](https://img.shields.io/badge/maintained-yes-green?style=for-the-badge)
![forks](https://img.shields.io/github/forks/agneay/Optimization-Techniques?style=for-the-badge)
![license](https://img.shields.io/github/license/agneay/Optimization-Techniques?style=for-the-badge)
![stars](https://img.shields.io/github/stars/agneay/Optimization-Techniques?style=for-the-badge)
![issues](https://img.shields.io/github/issues/agneay/Optimization-Techniques?style=for-the-badge)

### File Structure
```
optimization-techniques-matlab/

├── README.md
├── LICENSE
├── .gitignore

├── OneDimensional/
│ ├── golden_section.m
│ ├── fibonacci.m

├── GradientBased/
│ ├── secant_method.m
│ ├── newton_method.m

├── LinearProgramming/
│ └── simplex_method.m

└── DirectSearch/
└── hooke_jeeves.m
```