Multiply a pv−vector by an r−matrix.
Namespace: ASCOM.Astrometry.SOFAAssembly: ASCOM.Astrometry (in ASCOM.Astrometry.dll) Version: 6.0.0.0 (6.6.9999.9999)
Syntaxpublic void Rxpv(
double[,] r,
double[,] pv,
double[,] rpv
)
Public Sub Rxpv (
r As Double(,),
pv As Double(,),
rpv As Double(,)
)
public:
virtual void Rxpv(
array<double,2>^ r,
array<double,2>^ pv,
array<double,2>^ rpv
) sealed
Parameters
- r Double
- r−matrix
- pv Double
- pv−vector
- rpv Double
- r * pv
Remarks
Note
- The algorithm is for the simple case where the r−matrix r is not a function of time. The case where r Is a function of time leads
to an additional velocity component equal to the product of the derivative of r And the position vector.
- It is permissible for pv and rpv to be the same array.
See Also