finesse.analysis.noise.NoiseSolution.plot¶
- NoiseSolution.plot(self, *args, show=True, **kwargs)[source]¶
Plot solution(s).
If the solution contains child solutions, they are plotted in order. Solutions without plot arguments are skipped. Positional arguments passed to this method are assumed to be
dict
and are unpacked into calls to each child’s plot method. Global arguments to be passed to all plot methods can be specified directly as keyword arguments. Duplicate arguments specified in a positional argumentdictionaries
take precendence over global arguments.- Parameters:
- show
bool
, optional Show the figures.
- show
- Other Parameters:
- *args
Sequence of
dict
to use as parameters for the call to each child solution’s plot method.- **kwargs
Keyword arguments supported by the child solution(s).
Notes
If the Nth solution contains no plot method, it still consumes the Nth positional argument passed to this method.