b, a = butter(order, normal_cutoff, btype='low', analog=False)
- this highlights butter, and says there are too many values to unpack. When I run the code, it works and returns no errors.
b, a, c = butter(order, normal_cutoff, btype='low', analog=False)
- this is not highlighted, but when I run the code it breaks because it expects 3 outputs from butter, but only is getting 2.
I feel this is weird because I should not be getting any error in the first case but it is still shouting at me about too many values... so I give it more values to output and it breaks my code. Any insight?