Skip to content
Snippets Groups Projects
Commit 1d1b55b8 authored by Aaron Viets's avatar Aaron Viets
Browse files

calibration_parts.py: Fixed line subtraction typo.

parent e4b197a7
No related branches found
No related tags found
No related merge requests found
Pipeline #47210 failed
......@@ -366,7 +366,7 @@ def remove_harmonics_with_witnesses(pipeline, signal, witnesses, f0, num_harmoni
for j in range(0, len(witnesses)):
if(i != j):
# Find transfer function between 2 witness channels and at this frequency
tf_at_f = complex_division(pipeline, line_in_witnesses[j], line_in_witness[i])
tf_at_f = complex_division(pipeline, line_in_witnesses[j], line_in_witnesses[i])
# It may be necessary to remove the first few samples since
# denominator samples may have arrived before numerator samples,
# in which case the adder assumes the numerator is one.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment