disp function error in matlab coder
8 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
disp(["Generation #", int(g)]);
the above line is showing error in my code
shows following error
Error in GeneticAlgorithm (line 11)
disp(["Generation #", int(g)]);
any suggestions for this error
0 Commenti
Risposte (1)
Adam
il 14 Ott 2019
disp is not supported by Coder. sprintf should work though.
2 Commenti
Adam
il 14 Ott 2019
I don't know what
int(g)
is supposed to represent. There isn't an int() function in base Matlab. I also don't know what you are doing with sprintf to give you errors since you didn't post it.
In general sprintf can very simply directly replace disp, but I don't know what your disp function is trying to output since I don't know what int( ) is.
sprintf( "Generation #%i", g )
should theoretically work fine though.
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!