FACT++  1.0
void eraPvdpv ( double  a[2][3],
double  b[2][3],
double  adb[2] 
)

Definition at line 3 of file pvdpv.c.

References eraPdp().

Referenced by t_pvdpv().

31 {
32  double adbd, addb;
33 
34 /* a . b = constant part of result. */
35  adb[0] = eraPdp(a[0], b[0]);
36 
37 /* a . bdot */
38  adbd = eraPdp(a[0], b[1]);
39 
40 /* adot . b */
41  addb = eraPdp(a[1], b[0]);
42 
43 /* Velocity part of result. */
44  adb[1] = adbd + addb;
45 
46  return;
47 
48 }
double eraPdp(double a[3], double b[3])
Definition: pdp.c:3

+ Here is the call graph for this function:

+ Here is the caller graph for this function: