MATLAB: How to set target vector for training of neural network

Deep Learning Toolboxinput vectorMATLABneural networktarget vectortraining a neural network

I have six data values which I have to classify in two classes of three data values each.I am using a feedforward neural network for this purpose.The values are: 8.8950 9.9709 10.4990 15.0184 11.9559 and 12.5560.I want to classify first three values in one class and remaining three values in the other class.I have set my input vector like below:
[8.8950,9.9709,10.4990;15.0184,11.9559,12.5560]
Now please help me to set my target vector.Moreover if input vector needs some improvements then please highlight them as well.

Best Answer

Then the target vector can be [1 1 1 0 0 0;0 0 0 1 1 1]