We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
filter_def = create_bw_band_pass_filter( 2, 100, 0.1, 10);
for(uint16_t i = 0; i < 1000; i++) { output = bw_band_pass( filter_def, 1.0); }
printf( "output: %f\r\n", output); //------------------------------------------------------- yields: "output: 1.00000" expected output: 0.00000 since input remains constant
create_bw_high_pass_filter( 2, 100, 0.1) behaves correctly
The text was updated successfully, but these errors were encountered:
No branches or pull requests
filter_def = create_bw_band_pass_filter( 2, 100, 0.1, 10);
for(uint16_t i = 0; i < 1000; i++) {
output = bw_band_pass( filter_def, 1.0);
}
printf( "output: %f\r\n", output);
//-------------------------------------------------------
yields: "output: 1.00000" expected output: 0.00000 since input remains constant
create_bw_high_pass_filter( 2, 100, 0.1) behaves correctly
The text was updated successfully, but these errors were encountered: