categoricals.c: Rename function to more accurately reflect its purpose
[pspp-builds.git] / src / math / covariance.c
index be53672d709fe5ed419d1c76361c1bb8450ea10d..2f4f525adb6b69a561cc524f079c4607d7198401 100644 (file)
@@ -268,7 +268,7 @@ get_val (const struct covariance *cov, int i, const struct ccase *c)
       return val->f;
     }
 
-  return categoricals_get_binary_by_subscript (cov->categoricals, i - cov->n_vars, c);
+  return categoricals_get_code_for_case (cov->categoricals, i - cov->n_vars, c);
 }
 
 #if 0
@@ -631,22 +631,6 @@ covariance_calculate (struct covariance *cov)
 static gsl_matrix *
 covariance_calculate_double_pass_unnormalized (struct covariance *cov)
 {
-  size_t i, j;
-  for (i = 0 ; i < cov->dim; ++i)
-    {
-      for (j = 0 ; j < cov->dim; ++j)
-       {
-         int idx;
-         double *x = gsl_matrix_ptr (cov->moments[MOMENT_VARIANCE], i, j);
-
-         idx = cm_idx (cov, i, j);
-         if ( idx >= 0)
-           {
-             x = &cov->cm [idx];
-           }
-       }
-    }
-
   return  cm_to_gsl (cov);
 }
 
@@ -738,4 +722,86 @@ covariance_dim (const struct covariance * cov)
   return (cov->dim);
 }
 
+\f
+
+/*
+  Routines to assist debugging.
+  The following are not thoroughly tested and in certain respects
+  unreliable.  They should only be
+  used for aids to development. Not as user accessible code.
+*/
+
+#include "libpspp/str.h"
+#include "output/tab.h"
+#include "data/format.h"
+
+
+/* Create a table which can be populated with the encodings for
+   the covariance matrix COV */
+struct tab_table *
+covariance_dump_enc_header (const struct covariance *cov, int length)
+{
+  struct tab_table *t = tab_create (cov->dim,  length);
+  int i;
+  tab_title (t, "Covariance Encoding");
+
+  tab_box (t, 
+          TAL_2, TAL_2, 0, 0,
+          0, 0,   tab_nc (t) - 1,   tab_nr (t) - 1);
+
+  tab_hline (t, TAL_2, 0, tab_nc (t) - 1, 1);
+
+
+  for (i = 0 ; i < cov->n_vars; ++i)
+    {
+      tab_text (t, i, 0, TAT_TITLE, var_get_name (cov->vars[i]));
+      tab_vline (t, TAL_1, i + 1, 0, tab_nr (t) - 1);
+    }
+
+  int n = 0;
+  while (i < cov->dim)
+    {
+      struct string str;
+      int idx = i - cov->n_vars;
+      const struct interaction *iact =
+       categoricals_get_interaction_by_subscript (cov->categoricals, idx);
+
+      ds_init_empty (&str);
+      interaction_to_string (iact, &str);
+
+      int df = categoricals_df (cov->categoricals, n);
+
+      tab_joint_text (t,
+                     i, 0,
+                     i + df - 1, 0,
+                     TAT_TITLE, ds_cstr (&str));
+
+      if (i + df < tab_nr (t) - 1)
+       tab_vline (t, TAL_1, i + df, 0, tab_nr (t) - 1);
+
+      i += df;
+      n++;
+      ds_destroy (&str);
+    }
+
+  return t;
+}
+
 
+/*
+  Append table T, which should have been returned by covariance_dump_enc_header
+  with an entry corresponding to case C for the covariance matrix COV
+ */
+void
+covariance_dump_enc (const struct covariance *cov, const struct ccase *c,
+                    struct tab_table *t)
+{
+  static int row = 0;
+  int i;
+  ++row;
+  for (i = 0 ; i < cov->dim; ++i)
+    {
+      double v = get_val (cov, i, c);
+      tab_double (t, i, row, 0, v, i < cov->n_vars ? NULL : &F_8_0);
+    }
+}