how to supply Input matrix
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Sachin Ghalme
il 12 Mag 2016
Commentato: Greg Heath
il 14 Mag 2016
I want to supply training and target matrix to Neural Network. what should be command format?
0 Commenti
Risposta accettata
Walter Roberson
il 12 Mag 2016
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 Commenti
Greg Heath
il 14 Mag 2016
Too imprecise. Are these different matrix pairs considered different realizations of the same phenomenon?
Posting salient code would be helpful.
Hope this helps.
Greg
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Deep Learning Toolbox in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!