Changeset 737 for library/bdm/itpp_ext.h

Show
Ignore:
Timestamp:
11/25/09 12:14:38 (15 years ago)
Author:
mido
Message:

ASTYLER RUN OVER THE WHOLE LIBRARY, JUPEE

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • library/bdm/itpp_ext.h

    r723 r737  
    1919 
    2020namespace itpp { 
    21         extern vec empty_vec; 
    22          
     21extern vec empty_vec; 
     22 
    2323Array<int> to_Arr ( const ivec &indices ); 
    2424ivec linspace ( int from, int to ); 
     
    3333bvec operator< ( const vec &t1, const vec &t2 ); 
    3434 
    35 ivec get_from_bvec(const ivec &v, const bvec &binlist); 
     35ivec get_from_bvec ( const ivec &v, const bvec &binlist ); 
    3636 
    3737// template<class Num_T> 
     
    106106 
    107107//! implementation of matlab triu function 
    108 void triu(mat &A); 
     108void triu ( mat &A ); 
    109109 
    110110//! implementation of Mixtools function randun 
     
    113113double randun(); 
    114114//! implementation of Mixtools function randun 
    115 vec randun(int n); 
     115vec randun ( int n ); 
    116116//! implementation of Mixtools function randun 
    117 mat randun(int n, int m); 
     117mat randun ( int n, int m ); 
    118118 
    119119//! function returns unique entries in input vector \c in 
    120 ivec unique(const ivec &in); 
     120ivec unique ( const ivec &in ); 
    121121 
    122122//! function returns unique entries of vector \c in that are not present in vector \c base 
    123 ivec unique_complement(const ivec &in, const ivec &base); 
     123ivec unique_complement ( const ivec &in, const ivec &base ); 
    124124} 
    125125