setvals (array/np.ndarray) : if you want to display different things on the axis than the normal data point. When None, setvals is the same as the data varaible.
'''
self.data=np.asarray(data)
self.data=np.asarray(data).astype(float)
self.dtype=self.data.dtype
ifaxisisNone:
...
...
@@ -75,7 +75,7 @@ class loop_obj():
ifnotself.no_setpoints:
ifsetvalsisNone:
iflen(data.shape)==1:
iflen(self.data.shape)==1:
self.setvals=(self.data,)
else:
raiseValueError ('Multidimensional setpoints cannot be inferred from input.')