1
Basically, I need to enter a single for, add elements to an array or list (I don’t know if it’s in the language) and then divide the values by the amount of interactions. Very simple, if it were in any other language, but as I have little or no knowledge in MATLAB, it is very complex.
Till now I’ve done it that way:
maxInteracao = 10;
for index = 1 : maxInteracao
//stuff
erroClassifTeste = 100 * (classificacoesErradas/numTeste);
arrayErro := [] : append(erroClassifTeste);
end