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
- Host: GitHub
- URL: https://github.com/agneay/optimization-techniques
- Owner: agneay
- License: mit
- Created: 2025-07-30T22:57:19.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2025-07-30T23:35:19.000Z (6 months ago)
- Last Synced: 2025-07-31T02:01:30.973Z (6 months ago)
- Topics: matlab, optimization-methods, optimization-techniques
- Language: MATLAB
- Homepage:
- Size: 28.3 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- Funding: FUNDING.yml
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Security: SECURITY.md
Awesome Lists containing this project
README
# Optimization Techniques
A bunch of MATLAB files for checking answer to Optimization Problems [](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.





### 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
```