i can't use nntoolbox

1 view (last 30 days)
mohamed taher
mohamed taher on 8 Dec 2015
Commented: mohamed taher on 11 Dec 2015
when i try to train the neural network by (nnstart) toolbox
i use data in binary format
like::
input like => 010011110110011 and output like => 110111111010001 but it doesn't work and iterates 0 iterations
i want to know what is the problem

Accepted Answer

Walter Roberson
Walter Roberson on 8 Dec 2015
The input should be '010011110110011' or ('010011110110011' - '0') or [0,1,0,0,1,1,1,1,0,1,1,0,0,1,1]
Your input of 010011110110011 is being treated as a single decimal number.

More Answers (0)

Categories

Find more on Sequence and Numeric Feature Data Workflows in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!