Hi, I have a total of 49 data points. Each has 4 coulmns in total, namely Speed, Compression Ratio, A/F ratio and Load. I wish to create a model by splitting this 49 datas into 35 and 14 sets to train andtest respectively.
Now till now after opening matlab i usuallydefine the input and target matrix being input = [   
  1700  8 
 
  1650  13 
 
  1700  13 
 
  1600  14 
 
  1450  10 
 
  1500  9 
 
  1500  10 
 
  1550  11 ]'; and target = [    
  6.841  6.742 
 
  6.877  10.467 
 
  6.937  9.859 
 
  7.127  10.72 
 
  6.996  10.5 
 
  6.886  9.4 
 
  6.998  10 
 
  7.161  10.553 ]';
I am not giving all 35 datas here as this is to make you understand. Now I import these into nntool and then creat a network where I choose Network type - Feed-forward backprop
input data and target data
Training Function - TRAINLM
Adaption Learning Function - LEARNGDM
Performance Function - MSE
Number of layers - 2 
Layer 1 no. of neurons = 10 and transfer function = TANSIG
Layer 2 transfer function - PURELIN
After this I open the network to train where I chhose the input and target values. Epochs as default 1000 and max.
 I am attaching my screen shots for your refernce. Kindly help me out as I need to be able to train better models for this limited data if possible