Undefined function or variable 'network'
11 ビュー (過去 30 日間)
古いコメントを表示
When I try to run one of the demo's or, just one of the functions (feedforwardnet(10)), I get the following error:
Undefined function or variable 'network'
??? Undefined function or variable 'network'.
Error in ==> feedforwardnet>create_network at 99 net = network;
Error in ==> feedforwardnet at 67 net = create_network(param);
How do I solve this?
1 件のコメント
Matt J
2012 年 10 月 7 日
Well, is the variable network defined? If not, the obvious solution is to define it!
回答 (2 件)
David Herrera
2016 年 5 月 17 日
I had this same error message when using nntool. Check if you have the toolbox license. >license('checkout','nntool'); License checkout failed.
If you see this, you need to download the toolbox
0 件のコメント
Sean de Wolski
2012 年 10 月 7 日
編集済み: Sean de Wolski
2012 年 10 月 7 日
Try rehashing your toolbox path in case something got corrupted:
rehash toolboxcache
The class network should exist on a path similar to this:
which -all network
C:\Program Files\MATLAB\R2012b\toolbox\nnet\nnet\@network\network.m % network constructor
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Deep Learning Toolbox についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!