-
-
Notifications
You must be signed in to change notification settings - Fork 181
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Real coded Genetic Algorithm #69
base: master
Are you sure you want to change the base?
Conversation
This PR is for Hacktoberfest. Please add the label for the same if reviewed. |
@@ -0,0 +1,2 @@ | |||
Run the main.m file to execute whole algorithm. | |||
This is a similar minimization algorith but here real parameters are used instead of binary digits. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please briefly explain here the task you are trying to do with GA. GA is an approach to solving a variety of problems. Also, rename readme.txt to readme.md and use markdown formatting.
Perhaps also give a wiki link to the problem you are solving here so that readers can get a deeper understanding if they wish to. Write about what is the difference between real coded vs other approaches. Give a brief outline of the various steps.
Have a look at this repos readme for some inspiration.
https://github.com/OpenMined/PyGrid
You don't have to go all out, remember this is an educational repo. You are expected to educate, explain; not just give code.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ok sir, will do the same ASAP.
@@ -0,0 +1,3 @@ | |||
function z = sphere(x) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
add comments explaining this function.
@@ -0,0 +1,6 @@ | |||
function y = Mutate(x,mu,sigma) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
add comments explaining. do the same for other uncommented files.
If a wiki link available, give that too.
This is another approach with real coded genetic algorithm