multiple inputs with nntool
5 ビュー (過去 30 日間)
古いコメントを表示
Hi, I'm a new user of Matlab and trying to create a neural network with the nntool as it is much easier with this interface. While I can load many inputs and targets, when I want to create the network I am having a problem loading multiple inputs and targets at the same time (there is the option of loading only one), for ex. with back-propagation. I would really appreciate any help thanks in advance
0 件のコメント
回答 (3 件)
mohammed
2011 年 6 月 2 日
The following code import 4 columns as inputs, and 1 column as output
may you can modify as your own dataset
inputs = xlsread('D:\MyData\data.xls', 1, 'A2:D115');
targets = xlsread('D:\MyData\data.xls', 1, 'L2:L115');
inputs=inputs';
targets=targets';
0 件のコメント
mohammed
2011 年 6 月 1 日
There is may way to load your data before using nntool
the following URL shows how to load data from text file
after that you can use nntool
参考
カテゴリ
Help Center および File Exchange で Standard File Formats についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!