What does the error "Error using bsxfun" mean in implementing FFNN?

1 vue (au cours des 30 derniers jours)
Mohamed Nedal
Mohamed Nedal le 7 Mai 2017
Commenté : Greg Heath le 8 Mai 2017
Hello, I'm new to ANN and I was trying to implement FFNN using the following code:
a = xlsread('Data.xlsx');
input = [a(:,3) a(:,4) a(:,5) a(:,6)];
target = a(:,8);
net = feedforwardnet(10);
net = train(net, input', target');
y = net(input);
But it gave me the following error for the last line:
Error using bsxfun
Non-singleton dimensions of the two input arrays
must match each other.
What does this error mean and how can I fix it? Is it because there are missing attributes in the feedforwardnet()?
  2 commentaires
Mohamed Nedal
Mohamed Nedal le 8 Mai 2017
size(input) = 108 × 4
size(target) = 108 × 1
Greg Heath
Greg Heath le 8 Mai 2017
See my answer!
Greg

Connectez-vous pour commenter.

Réponse acceptée

Greg Heath
Greg Heath le 8 Mai 2017
The input matrix of N I-dimensional "I"nputs and corresponding output target matrix containing N O-dimensional "O"utputs have the dimensions
[ I N ] = size(input)
[ O N ] = size(target)
What are the results of these commands for your data?
Hope this helps.
Thank you for formally accepting my answer
Greg

Plus de réponses (0)

Catégories

En savoir plus sur Deep Learning Toolbox dans Help Center et File Exchange

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by