I have some data for time series prediction. variable 1 is speed and variable 2 is time of the day the vehicle is starting. The output is time taken for the vehicle to reach destination. I used both variable 1 and variable 2 as inputs for svr using libsvm but later found out that variable 1 and variable 2 are dependent since speed of the vehicle depends on time of the day.
Can we do regression using two dependent variables as inputs? As I know the regression model y = a + b1.x1 + b2.x2 + ....+ e is for independent variables.