What is syntax error in this line function [TrainingTime, TestingTime, TrainingAccuracy, TestingAccuracy] = ELM(sinc_train.txt,sinc_test.txt,0;1;radbas);
1 回表示 (過去 30 日間)
古いコメントを表示
I can't recognize what is error in this line. plz help me.
0 件のコメント
採用された回答
Walter Roberson
2017 年 3 月 4 日
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 件のコメント
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!