sgnl.sinks.impulse
¶
A sink element that performs an impulse respose test.
ImpulseSink
dataclass
¶
Bases: TSSink
A sink element that performs an impulse response test
Parameters:
Name | Type | Description | Default |
---|---|---|---|
original_templates
|
Optional[str]
|
str, an h5 file name containing the templates before SVD |
None
|
template_duration
|
Optional[float]
|
float, the duration of the templates, in seconds. This will inform us of how much data around the impulse to perform the impulse response test with. |
None
|
plotname
|
Optional[str]
|
str, output file name prefix of plots |
None
|
impulse_pad
|
Optional[str]
|
str, the sink pad name of the impulse data stream. This is used for plotting the impulse position. |
None
|
data_pad
|
Optional[str]
|
str, the sink pad name of the filtered data stream to perform the impulse response with. When there are multiple data streams, only one data stream undergoes the impulse response test. |
None
|
verbose
|
bool
|
bool, default False, be verbose |
False
|
bankno
|
Optional[int]
|
int, the bank order number to choose which bank to perform the impulse test on. This order number is the one after the bank sorting. Many banks can be filtered but only one bank can under go the impulse response test. |
None
|
Source code in sgnl/sinks/impulse.py
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 |
|
impulse_test()
¶
filter output against time reversed template
Source code in sgnl/sinks/impulse.py
106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 |
|
plot_wave(data, dataname, figname, matchdata, cavgn)
¶
Plot the input and output of the impulse response
Source code in sgnl/sinks/impulse.py
216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 |
|
pull(pad, bufs)
¶
getting the buffer on the pad just modifies the name to show this final graph point and the prints it to prove it all works.
Source code in sgnl/sinks/impulse.py
59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 |
|