Problem with Fitnet function
이전 댓글 표시
whenever I run fitnet function (net=fitnet(10)), I obtain an error : Not enough input arguments. I have Matlab 2018 educational version with all toolboxes installed.
채택된 답변
추가 답변 (1개)
Greg Heath
2019년 1월 11일
0 개 추천
Delete the outer parentheses
>> ( net = fitnet(10) ) % ERROR
>> net = fitnet(10) % OK
!!! Thank you for formally accepting my answer !!!
Greg
카테고리
도움말 센터 및 File Exchange에서 Deep Learning Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!