Lines Matching refs:order
56 are in [0,1] for polys of order 5. I spent some time working out whether eigenvalue root finding
121 OptInterval bounds_fast(const SBasisOf<double> &sb, int order) {
123 OptInterval bounds_fast(const SBasis &sb, int order) {
127 for(int j = sb.size()-1; j>=order; j--) {
148 if (order>0) res*=std::pow(.25,order);
152 /** Find a small interval that bounds a(t) for t in i to order order
155 \param order number of terms
160 OptInterval bounds_local(const SBasisOf<double> &sb, const OptInterval &i, int order) {
162 OptInterval bounds_local(const SBasis &sb, const OptInterval &i, int order) {
165 for(int j = sb.size()-1; j>=order; j--) {
185 if (order>0) res*=std::pow(.25,order);