aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorFranz Zotter <fzotter@users.sourceforge.net>2009-06-17 09:32:09 +0000
committerFranz Zotter <fzotter@users.sourceforge.net>2009-06-17 09:32:09 +0000
commit7275c176567468d40a0794acef3a8dd68e8f575e (patch)
treeac1c11d5528944a3c468aadcbc4ae8b7338a9e70 /src
parent243b48abf7922957fc3e0876bf9f12f893a8327f (diff)
removed a faulty condition from [mtx_qr]...
svn path=/trunk/externals/iem/iemmatrix/; revision=11793
Diffstat (limited to 'src')
-rw-r--r--src/mtx_qr.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/mtx_qr.c b/src/mtx_qr.c
index ef09d0f..5e43e30 100644
--- a/src/mtx_qr.c
+++ b/src/mtx_qr.c
@@ -115,8 +115,6 @@ static void mTXQrMatrix (MTXQr *x, t_symbol *s,
post("mtx_qr: invalid dimensions");
else if (in_size<size)
post("mtx_qr: sparse matrix not yet supported: use \"mtx_check\"");
- else if (rows<columns)
- post("mtx_qr: gsl_linalg_SVD_decomp does not support M<N");
else {
x->rows=rows;
x->columns=columns;