What is syntax error in this line function [TrainingTime, TestingTime, TrainingAccuracy, TestingAccuracy] = ELM(sinc_train.txt,sinc_test.txt,0;1;radbas);
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
tejasvee
am 4 Mär. 2017
Beantwortet: Walter Roberson
am 4 Mär. 2017
I can't recognize what is error in this line. plz help me.
0 Kommentare
Akzeptierte Antwort
Walter Roberson
am 4 Mär. 2017
You cannot have ";" to separate parameters.
Perhaps
[TrainingTime, TestingTime, TrainingAccuracy, TestingAccuracy] = ELM('sinc_train.txt', 'sinc_test.txt', [0;1;radbas]);
... it would help if you posted the code in the body instead of the title, as the system modifies titles.
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Performance and Memory finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!