Home | History | Annotate | Download | only in pattern_tools

Lines Matching full:ceil

2865         granularity = 10**math.ceil(math.log10(max(abs(self.low), abs(self.high))))
2866 lowN = math.ceil(1.*self.low / granularity)
2878 lowN = math.ceil(1.*self.low / granularity)
2925 lowN = math.ceil(1.*self.low / granularity)
2956 spacing = 10**(math.ceil(math.log10(min(granularities)) - 1))
2959 x = original_ticks[0] - math.ceil(1.*(original_ticks[0] - self.low) / spacing) * spacing
2999 highN = math.ceil(math.log(self.high, base))
3019 output2 = self.compute_ticks(N=-int(math.ceil(N/2.)), format=format)
3038 highN = math.ceil(math.log(self.high, base))
3045 for m in range(2, int(math.ceil(base))):