FACT++  1.0
static void t_pvmpv ( int *  status)
static

Definition at line 6919 of file t_erfa_c.c.

References eraPvmpv(), and vvd().

Referenced by main().

6934 {
6935  double a[2][3], b[2][3], amb[2][3];
6936 
6937 
6938  a[0][0] = 2.0;
6939  a[0][1] = 2.0;
6940  a[0][2] = 3.0;
6941 
6942  a[1][0] = 5.0;
6943  a[1][1] = 6.0;
6944  a[1][2] = 3.0;
6945 
6946  b[0][0] = 1.0;
6947  b[0][1] = 3.0;
6948  b[0][2] = 4.0;
6949 
6950  b[1][0] = 3.0;
6951  b[1][1] = 2.0;
6952  b[1][2] = 1.0;
6953 
6954  eraPvmpv(a, b, amb);
6955 
6956  vvd(amb[0][0], 1.0, 1e-12, "eraPvmpv", "11", status);
6957  vvd(amb[0][1], -1.0, 1e-12, "eraPvmpv", "21", status);
6958  vvd(amb[0][2], -1.0, 1e-12, "eraPvmpv", "31", status);
6959 
6960  vvd(amb[1][0], 2.0, 1e-12, "eraPvmpv", "12", status);
6961  vvd(amb[1][1], 4.0, 1e-12, "eraPvmpv", "22", status);
6962  vvd(amb[1][2], 2.0, 1e-12, "eraPvmpv", "32", status);
6963 
6964 }
void eraPvmpv(double a[2][3], double b[2][3], double amb[2][3])
Definition: pvmpv.c:3
static void vvd(double val, double valok, double dval, const char *func, const char *test, int *status)
Definition: t_erfa_c.c:58

+ Here is the call graph for this function:

+ Here is the caller graph for this function: