The measurement data are steering angle and steering angle velocity and from this data, the driving maneuver should be recognized (the maneuvers are lane changes to left and right, turn left and right lane keeping).
One place to start is an algorithm like Baum-Welch that uses expectation maximization to find most likely parameters. MATLAB implements a version of this algorithm in 'hmmtrain'.
you can use the artificial neural network toolbox in Matlab especially for pattern recognition , where you can denote to left and right lane by binary targets (1 and -1)
@ Hencey : for using hmmtrain I need the initial matrix A (transition matrix) and B (emission matrix matrix) like : [estTR,estE] = hmmtrain(seqs,trans,emis) could you please tell me how I cann compute initial transition & emission matrix?
@ Ihsan A. Baqer: could you please tell me some details about ANNs? how can I use this command?
Thank you very much for your answer and your help.
Could you please tell me how I should choose the Input & Target ? should I have labeled Data?
(I attached one measrement data, the parameter are 1. column: Time, 2. speed, 3. steering wheel abgle, 4- steering wheel angle velocity, 5-column, steering force.)
an input & Target should I use these Data? and together or individually?