TheAlgorithms / MATLAB-Octave

This repository contains algorithms written in MATLAB/Octave. Developing algorithms in the MATLAB environment empowers you to explore and refine ideas, and enables you test and verify your algorithm.
MIT License
373 stars 176 forks source link

Create Random Search #50

Closed Triaro closed 4 years ago

Triaro commented 4 years ago

This code finds the minimum of f(x) = x(1)^2 + x(2)^2 in which -5 < x(i) < 5 This function is a convex and the minimum is at (0,0) The RSA is the simplest algorithm to solve optimization problem It is not efficient and it sometimes cannot solve the problem

Triaro commented 4 years ago

Please add the label. Hacktoberfest-accepted in my pull request. Thank you sir.