aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormusil <tmusil@users.sourceforge.net>2006-11-10 14:37:04 +0000
committermusil <tmusil@users.sourceforge.net>2006-11-10 14:37:04 +0000
commitcd86bcd15d219112fff27e500f62b67041801610 (patch)
treee27a5e0f42746f83ae085e44be16b8d6a40b3fd4
parent4902bb3bd0bba7839921baa099abe311f2e9391d (diff)
changed regular to nonsingular
svn path=/trunk/externals/iem/iem_ambi/; revision=6257
-rw-r--r--src/ambi_decode.c4
-rw-r--r--src/ambi_decode2.c4
-rw-r--r--src/ambi_decode3.c4
-rw-r--r--src/ambi_decode_cube.c4
4 files changed, 8 insertions, 8 deletions
diff --git a/src/ambi_decode.c b/src/ambi_decode.c
index 1481be3..1caec50 100644
--- a/src/ambi_decode.c
+++ b/src/ambi_decode.c
@@ -266,7 +266,7 @@ static void ambi_decode_inverse(t_ambi_decode *x)
nz = ambi_decode_eval_which_element_of_col_not_zero(x, i, i);
if(nz < 0)
{
- post("ambi_decode ERROR: matrix not regular !!!!");
+ post("ambi_decode ERROR: matrix singular !!!!");
return;
}
else
@@ -299,7 +299,7 @@ static void ambi_decode_inverse(t_ambi_decode *x)
}
}
- post("matrix_inverse regular");
+ post("matrix_inverse nonsingular");
}
static void ambi_decode_pinv(t_ambi_decode *x)
diff --git a/src/ambi_decode2.c b/src/ambi_decode2.c
index 643e0b4..a4a3a36 100644
--- a/src/ambi_decode2.c
+++ b/src/ambi_decode2.c
@@ -271,7 +271,7 @@ static void ambi_decode2_inverse(t_ambi_decode2 *x)
nz = ambi_decode2_eval_which_element_of_col_not_zero(x, i, i);
if(nz < 0)
{
- post("ambi_decode2 ERROR: matrix not regular !!!!");
+ post("ambi_decode2 ERROR: matrix singular !!!!");
return;
}
else
@@ -304,7 +304,7 @@ static void ambi_decode2_inverse(t_ambi_decode2 *x)
}
}
- post("matrix_inverse regular");
+ post("matrix_inverse nonsingular");
}
static void ambi_decode2_pseudo_inverse(t_ambi_decode2 *x, t_symbol *s, int argc, t_atom *argv)
diff --git a/src/ambi_decode3.c b/src/ambi_decode3.c
index b29d1b6..7547725 100644
--- a/src/ambi_decode3.c
+++ b/src/ambi_decode3.c
@@ -257,7 +257,7 @@ static void ambi_decode3_inverse(t_ambi_decode3 *x)
nz = ambi_decode3_eval_which_element_of_col_not_zero(x, i, i);
if(nz < 0)
{
- post("ambi_decode3 ERROR: matrix not regular !!!!");
+ post("ambi_decode3 ERROR: matrix singular !!!!");
return;
}
else
@@ -290,7 +290,7 @@ static void ambi_decode3_inverse(t_ambi_decode3 *x)
}
}
- post("matrix_inverse regular");
+ post("matrix_inverse nonsingular");
}
static void ambi_decode3_begin_pseudo_inverse(t_ambi_decode3 *x)
diff --git a/src/ambi_decode_cube.c b/src/ambi_decode_cube.c
index 154eab7..1f8ab9f 100644
--- a/src/ambi_decode_cube.c
+++ b/src/ambi_decode_cube.c
@@ -269,7 +269,7 @@ static void ambi_decode_cube_inverse(t_ambi_decode_cube *x)
nz = ambi_decode_cube_eval_which_element_of_col_not_zero(x, i, i);
if(nz < 0)
{
- post("ambi_decode_cube ERROR: matrix not regular !!!!");
+ post("ambi_decode_cube ERROR: matrix singular !!!!");
return;
}
else
@@ -302,7 +302,7 @@ static void ambi_decode_cube_inverse(t_ambi_decode_cube *x)
}
}
- post("matrix_inverse regular");
+ post("matrix_inverse nonsingular");
}
static void ambi_decode_cube_pinv(t_ambi_decode_cube *x)