Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/17/09 17:05:22 (15 years ago)
Author:
gkronber
Message:

Updated ALGLIB to latest version. #751 (Plugin for for data-modeling with ANN (integrated into CEDMA))

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/ALGLIB/svd.cs

    r2430 r2563  
    154154            // Use bidiagonal reduction with QR-decomposition
    155155            //
    156             if( m>1.6*n )
     156            if( (double)(m)>(double)(1.6*n) )
    157157            {
    158158                if( uneeded==0 )
     
    224224            // Use bidiagonal reduction with LQ-decomposition
    225225            //
    226             if( n>1.6*m )
     226            if( (double)(n)>(double)(1.6*m) )
    227227            {
    228228                if( vtneeded==0 )
     
    341341
    342342
    343         /*************************************************************************
    344         Obsolete 1-based subroutine.
    345         See RMatrixSVD for 0-based replacement.
    346         *************************************************************************/
    347343        public static bool svddecomposition(double[,] a,
    348344            int m,
     
    422418            // Use bidiagonal reduction with QR-decomposition
    423419            //
    424             if( m>1.6*n )
     420            if( (double)(m)>(double)(1.6*n) )
    425421            {
    426422                if( uneeded==0 )
     
    492488            // Use bidiagonal reduction with LQ-decomposition
    493489            //
    494             if( n>1.6*m )
     490            if( (double)(n)>(double)(1.6*m) )
    495491            {
    496492                if( vtneeded==0 )
Note: See TracChangeset for help on using the changeset viewer.