Heya, I'm trying to predict the position of an object (X Y and Z) in 3D space, given all of the past positional data. The issue is that X, Y, and Z have direct influences on eachother, and if I only used the past positions of X to predict current X, it may be way off. I would need to use the past positions of Y and Z as well to predict X somewhat accurately - is there something that can do this?
Time series forecasting examples in models I've checked don't account for intermingling of X Y and Z influence. This is for an orbital position predictor and as any offset throws the gravity off, I need some sort of solution that uses past data of all coordinates to predict current ones.