#ifndef IGL_COLON_H #define IGL_COLON_H #include namespace igl { // Note: // This should be potentially replaced with eigen's LinSpaced() function // Colon operator like matlab's colon operator. Enumerats values between low // and hi with step step. // Templates: // L should be a eigen matrix primitive type like int or double // S should be a eigen matrix primitive type like int or double // H should be a eigen matrix primitive type like int or double // T should be a eigen matrix primitive type like int or double // Inputs: // low starting value if step is valid then this is *always* the first // element of I // step step difference between sequential elements returned in I, // remember this will be cast to template T at compile time. If lowhi then step must be negative. // Otherwise I will be set to empty. // hi ending value, if (hi-low)%step is zero then this will be the last // element in I. If step is positive there will be no elements greater // than hi, vice versa if hi inline void colon( const L low, const S step, const H hi, Eigen::Matrix & I); // Same as above but step == (T)1 template inline void colon( const L low, const H hi, Eigen::Matrix & I); // Return output rather than set in reference template inline Eigen::Matrix colon( const L low, const H hi); } // Implementation #include template inline void igl::colon( const L low, const S step, const H hi, Eigen::Matrix & I) { if(low < hi) { if(step < 0) { I.resize(0); fprintf(stderr,"Error: colon() low(%g) hi) { if(step > 0) { I.resize(0); fprintf(stderr,"Error: colon() low(%g)>hi(%g) but step(%g)<0\n", (double)low, (double)hi, (double)step); return; } } // resize output int n = floor(double((hi-low)/step))+1; I.resize(n); int i = 0; T v = (T)low; while((lowhi && (H)v>=hi)) { I(i) = v; v = v + (T)step; i++; } assert(i==n); } template inline void igl::colon( const L low, const H hi, Eigen::Matrix & I) { return igl::colon(low,(T)1,hi,I); } template inline Eigen::Matrix igl::colon( const L low, const H hi) { Eigen::Matrix I; igl::colon(low,hi,I); return I; } #endif