(self)
| 127 | self.actual.append(actual) |
| 128 | |
| 129 | def get(self) -> tuple[np.ndarray, np.ndarray, np.ndarray, np.ndarray]: |
| 130 | return np.array(self.times), np.array(self.desired), np.array(self.actual), np.array(self.okay) |
| 131 | |
| 132 | |
| 133 | class BlockAverage: |
no outgoing calls