documentation
[pspp] / src / language / stats / matrix.c
index 558841a9e0199a724c1c380dca9503cca0579e64..be635f9bad85012b7f784ec17e1639b9c9be7fa7 100644 (file)
@@ -904,7 +904,7 @@ matrix_eval_GSCH (gsl_matrix *v)
   if (v->size2 < v->size1)
     {
       msg (SE, _("GSCH requires its argument to have at least as many columns "
-                 "as rows, but it has dimensions (%zu,%zu)."),
+                 "as rows, but it has dimensions %zu×%zu."),
            v->size1, v->size2);
       return NULL;
     }
@@ -1442,8 +1442,8 @@ matrix_eval_SOLVE (gsl_matrix *m1, gsl_matrix *m2)
   if (m1->size1 != m2->size1)
     {
       msg (SE, _("SOLVE requires its arguments to have the same number of "
-                 "rows, but the first argument has dimensions (%zu,%zu) and "
-                 "the second (%zu,%zu)."),
+                 "rows, but the first argument has dimensions %zu×%zu and "
+                 "the second %zu×%zu."),
            m1->size1, m1->size2,
            m2->size1, m2->size2);
       return NULL;