Plot a chart for the impulse response's `Ts` by frequency `bands`.
(self, label='Ts', yaxis='Central time [s]', **kwargs)
| 1121 | return self.plot_param('T30', dataLabel=label, yLabel=yaxis, **kwargs) |
| 1122 | |
| 1123 | def plot_Ts(self, label='Ts', yaxis='Central time [s]', **kwargs): |
| 1124 | """Plot a chart for the impulse response's `Ts` by frequency `bands`.""" |
| 1125 | return self.plot_param('Ts', dataLabel=label, yLabel=yaxis, **kwargs) |
| 1126 | |
| 1127 | def plot_EDT(self, label='EDT', yaxis='Early Decay Time [s]', **kwargs): |
| 1128 | """Plot a chart for the impulse response's `EDT` by frequency `bands`.""" |
nothing calls this directly
no test coverage detected