Show
Ignore:
Timestamp:
01/31/10 22:14:14 (14 years ago)
Author:
smidl
Message:

new ARX model (allowing non-linear transformation)

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • library/bdm/math/functions.h

    r737 r800  
    3232        constfn ( const vec &val0 ) : fnc(), val ( val0 ) { 
    3333                dimy = val.length(); 
     34                dimc = 0; 
    3435        }; 
    3536}; 
     
    5657                A = A0; 
    5758                B = B0; 
     59        }; 
     60        void from_setting(const Setting &set){ 
     61                UI::get(A,set,"A",UI::compulsory); 
     62                UI::get(B,set,"B",UI::compulsory); 
     63        } 
     64        void validate(){ 
    5865                dimy = A.rows(); 
    59         }; 
     66                dimc = A.cols(); 
     67        } 
     68         
    6069}; 
     70UIREGISTER(linfn); 
    6171 
    6272