How to use simple genetic-algorithms coding this problem in matlab?
We made a word guess game in which the GA is given the number of letters
in a word, and it guesses the letters that compose the word until it finds the right answer.
for example
generation fitness best guess
1 2 abcde
2 3 apcde
3 4 fppde
.
.
.
10 5 apple (right answer)
thank you very much.