Hello George,
From my understanding you are trying to predict whether an event is single track or double track using sensor data. The format of sensor data is 35 x 4 as mentioned in the description, and you would like to predict the same using neural networks.
The choice of architecture depends on the question and the type of data. If the sensor data is time dependent or periodic in nature you could use “narxnet”, “narnet” or “timedelaynet”, for more complex time dependencies use RNN like LSTM, otherwise simple feedforwardnet would work. Documentations below might be a great starting point,
The input of the dataset can be of the format 140 x 1 (35 x 4 spread out along columns). Further as the input data and output data both are categorical in nature you can use label or one hot encoding depending on the need. (For ex: 0 degree is 0 and 90 degree is 1).
Obtaining locations for each of the tracks depend on if you have the required dataset or not. If you have the dataset, you can simply use a regressive neural network and predict the locations.
Hope this helps.


