Show
Ignore:
Timestamp:
10/15/09 00:04:30 (15 years ago)
Author:
smidl
Message:

doc - doxygen warnings

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • library/bdm/design/ctrlbase.h

    r649 r660  
    8989                //! refresh temporary storage - inefficient can be improved 
    9090                void initialize(); 
     91                //! validation procedure 
    9192                void validate(); 
    9293                //! function for future use which is called at each time td; Should call initialize()! 
     
    111112                        L = -inv(post_qr.get(0,dimu-1, 0,dimu-1)) * post_qr.get(0,dimu-1, dimu, 2*dimu+dimx+dimy-1); 
    112113                } 
     114                //! compute control action 
    113115                vec apply(const vec &state, const vec &ukm){vec pom=concat(state, ones(dimy), ukm); return L*pom;} 
    114116        } ;