how to supply Input matrix
1 回表示 (過去 30 日間)
古いコメントを表示
I want to supply training and target matrix to Neural Network. what should be command format?
0 件のコメント
採用された回答
Walter Roberson
2016 年 5 月 12 日
Example:
inputs = xlsread('data_flood.xlsx','Sheet5') .';
targets = xlsread('data_flood.xlsx','Sheet6') .';
n = 3; % number of neurons
net = feedforwardnet(n);
net = configure(net, inputs, targets);
Notice the transpose of the data: each column is a different sample.
2 件のコメント
Greg Heath
2016 年 5 月 14 日
Too imprecise. Are these different matrix pairs considered different realizations of the same phenomenon?
Posting salient code would be helpful.
Hope this helps.
Greg
その他の回答 (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!