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!