フィルターのクリア

how to supply Input matrix

1 回表示 (過去 30 日間)
Sachin Ghalme
Sachin Ghalme 2016 年 5 月 12 日
コメント済み: Greg Heath 2016 年 5 月 14 日
I want to supply training and target matrix to Neural Network. what should be command format?

採用された回答

Walter Roberson
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 件のコメント
Sachin Ghalme
Sachin Ghalme 2016 年 5 月 13 日
Thank, I will try... But I am using for loop and with iteration I want to change input and output matrix?
Greg Heath
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 ExchangeDeep Learning Toolbox についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by