Neuronal network inputs and outputs
1 次查看(过去 30 天)
显示 更早的评论
Hi everyone, I made a fitting NN, and I have the input data on a excel file with 18 variables and the 6 outputs in another file, everything looks like work pretty well, but every tiem I called the network, it only works when I placed just one input variable, but It should work just when I put the 18 variables values intup, am I right? Am I getting something wrong?, thanks
0 个评论
采纳的回答
Divya Gaddipati
2021-5-13
Your function expects a single input argument. But, you are giving 16 inputs, which is why it's failing.
You can try the following to resolve your issue:
% Input should be a matrix
y1 = myNeuralNetworkFunction([1:16]);
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Sequence and Numeric Feature Data Workflows 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!