12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- #ifndef IGL_COLON_H
- #define IGL_COLON_H
- #include "igl_inline.h"
- #include <Eigen/Dense>
- 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 low<hi
- // then step must be positive. If low>hi 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<low
- // Output:
- // I list of values from low to hi with step size step
- template <typename L,typename S,typename H,typename T>
- IGL_INLINE void colon(
- const L low,
- const S step,
- const H hi,
- Eigen::Matrix<T,Eigen::Dynamic,1> & I);
- // Same as above but step == (T)1
- template <typename L,typename H,typename T>
- IGL_INLINE void colon(
- const L low,
- const H hi,
- Eigen::Matrix<T,Eigen::Dynamic,1> & I);
- // Return output rather than set in reference
- template <typename T,typename L,typename H>
- IGL_INLINE Eigen::Matrix<T,Eigen::Dynamic,1> colon(
- const L low,
- const H hi);
- }
- #ifdef IGL_HEADER_ONLY
- # include "colon.cpp"
- #endif
- #endif
|