diff options
Diffstat (limited to 'src/ambi_decode.c')
-rw-r--r-- | src/ambi_decode.c | 4 |
1 files changed, 2 insertions, 2 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) |