Lines Matching refs:base
135 def __init__(self, base, nbins=None):
136 # note base needs to be floats to avoid integer pow issues
137 self.base = float(base)
139 super().__init__(self.base)
150 # find the best power, use this as our locator's actual base
151 scale = self.base ** (m.ceil(m.log((vmax-vmin) / (nbins+1), self.base)))
1122 help="Use base-2 prefixes for the x-axis.")
1126 help="Use base-2 prefixes for the y-axis.")