From: fujishita t. <fjs...@us...> - 2017-05-16 11:00:19
|
Update of /cvsroot/sp-tk/SPTK/src/bin/levdur In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv28682 Modified Files: levdur.c _levdur.c Log Message: modify the default value of -f option Index: _levdur.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/levdur/_levdur.c,v retrieving revision 1.23 retrieving revision 1.24 diff -C2 -d -r1.23 -r1.24 *** _levdur.c 22 Dec 2016 10:53:06 -0000 1.23 --- _levdur.c 16 May 2017 11:00:17 -0000 1.24 *************** *** 55,59 **** double *a : LP coefficients int m : order of LPC ! double eps : singular check (eps(if -1., 1.0e-6 is assumed)) return value : 0 -> normally completed --- 55,59 ---- double *a : LP coefficients int m : order of LPC ! double eps : singular check (eps(if -1., 0.0 is assumed)) return value : 0 -> normally completed *************** *** 92,96 **** if (eps < 0.0) ! eps = 1.0e-6; rmd = r[0]; #ifdef WIN32 --- 92,96 ---- if (eps < 0.0) ! eps = 0.0; rmd = r[0]; #ifdef WIN32 Index: levdur.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/levdur/levdur.c,v retrieving revision 1.29 retrieving revision 1.30 diff -C2 -d -r1.29 -r1.30 *** levdur.c 25 Dec 2016 05:00:19 -0000 1.29 --- levdur.c 16 May 2017 11:00:17 -0000 1.30 *************** *** 56,60 **** * -m m : order of correlation [25] * * -f f : mimimum value of the determinant * ! * of the normal matrix [0.000001] * * infile: * * autocorrelation * --- 56,60 ---- * -m m : order of correlation [25] * * -f f : mimimum value of the determinant * ! * of the normal matrix [0.0] * * infile: * * autocorrelation * *************** *** 94,98 **** /* Default Values */ #define ORDER 25 ! #define MINDET 0.000001 /* Command Name */ --- 94,98 ---- /* Default Values */ #define ORDER 25 ! #define MINDET 0.0 /* Command Name */ |