Return whether both *vmin* and *vmax* are set on all constituent norms.
(self)
| 3572 | self._changed() |
| 3573 | |
| 3574 | def scaled(self): |
| 3575 | """Return whether both *vmin* and *vmax* are set on all constituent norms.""" |
| 3576 | return all(n.scaled() for n in self.norms) |
| 3577 | |
| 3578 | @staticmethod |
| 3579 | def _iterable_components_in_data(data, n_components): |