From c3a067dc355fc57a5759d4e9a97bcbcd878caf13 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?IOhannes=20m=20zm=C3=B6lnig?= Date: Thu, 3 Jan 2008 12:28:27 +0000 Subject: pedantic and C99 svn path=/trunk/externals/iem/iemmatrix/; revision=9114 --- src/mtx_cholesky.c | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) (limited to 'src/mtx_cholesky.c') diff --git a/src/mtx_cholesky.c b/src/mtx_cholesky.c index 48f67d8..d717faf 100644 --- a/src/mtx_cholesky.c +++ b/src/mtx_cholesky.c @@ -40,20 +40,20 @@ static void mtx_cholesky_matrix(t_matrix *x, t_symbol *s, int argc, t_atom *argv return; } - // reserve memory for outputting afterwards + /* reserve memory for outputting afterwards */ adjustsize(x, row, row); - // 1. get the 2 matrices : orig; invert (create as eye, but will be orig^(-1)) + /* 1. get the 2 matrices : orig; invert (create as eye, but will be orig^(-1)) */ cholesky = (t_matrixfloat *)getbytes(sizeof(t_matrixfloat)*row2); - // 1a extract values of A to float-buf + /* 1a extract values of A to float-buf */ original=matrix2float(argv); - // 2 set the cholesky matrix to zero + /* 2 set the cholesky matrix to zero */ for(i=0; iatombuffer, cholesky); - // 4b destroy the buffers + /* 4b destroy the buffers */ freebytes(original, sizeof(t_matrixfloat)*row2); - // 4c output the atombuf; + /* 4c output the atombuf; */ matrix_bang(x); } -- cgit v1.2.1