Transition matrix from 2 state vectors

Hello everyone!! Is it possible to get a transition matrix knowing only 2 state vectors and not their frames. I have this two vectors:

pvcoord = [Vector3D(float(-11005.53518333), float(40704.45330636), float(8.50428497)), Vector3D(float(-2.967979047096), float(-0.802456131256), float(0.005432716905))]
pvcoord2 = [Vector3D(float(-11221.016739), float(40645.577148), float(-15.414314)), Vector3D(float(-2.963691), float(-0.818169), float(-0.001428))]

There are getRotation() and getTranslation() methods in class translation, but I’m not sure they can help in my problem. Even so, I still need to know frames of both state vectors.

Hi Daiana,

I’m not sure what you mean here by transition matrix. In Orekit, the state transition matrix refers to the Jacobian of the function mapping initial conditions to final ones.
What are the two position velocity vectors that you’re giving? Are they from two objects at the same time or one at different times?

Cheers,
Romain.

hello!! I guess i said something incorrectly. These are vectors related to one body at the same time but in different frames. It is easy to calculate the transition matrix between two frames, i just wanted to know if you know one of the frames, is it possible to get the name of the second one, knowing this transition matrix??