I want to supply training and target matrix to Neural Network. what should be command format?

 Respuesta aceptada

Walter Roberson
Walter Roberson el 12 de Mayo de 2016

0 votos

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 comentarios

Sachin Ghalme
Sachin Ghalme el 13 de Mayo de 2016
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 el 14 de Mayo de 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

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Deep Learning Toolbox en Centro de ayuda y File Exchange.

Preguntada:

el 12 de Mayo de 2016

Comentada:

el 14 de Mayo de 2016

Community Treasure Hunt

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

Start Hunting!

Translated by