Evaluate the weight function, and flag whether the weights are scalar or not. (Internal use mostly) Definition at line 485 of file fitting_toolkit.py. 00485 : 00486 self.weights=self.weight_func() 00487 self.scalar_weights = (type(self.weights) is type(1.0) or len(self.weights.shape)==1) 00488 ##
|