Flutter Engine
The Flutter Engine
|
Classes | |
class | IndexTracker |
Functions | |
def | withinStdDev (n) |
def | withinStdDevRange (a, b) |
Variables | |
int | samples_per_pixel = 4 |
int | subpxls_per_pixel = 3 |
list | sample_offsets |
int | sample_units_width = 5 |
int | std_dev_max = 3 |
int | target_sum = 0x110 |
list | coeffs = [] |
list | coeffs_rounded = [] |
int | current_sample_left = sample_offset - sample_units_width |
int | current_std_dev_left = -std_dev_max |
bool | done = False |
current_sample_right = math.floor(current_sample_left + 1) | |
int | current_std_dev_right |
def | coverage = withinStdDevRange(current_std_dev_left, current_std_dev_right) |
int | delta = 0 |
coeffs_rounded_sum = sum(coeffs_rounded) | |
list | coeff_diff |
coeff_pkg | |
num_elements_to_force_round = abs(coeffs_rounded_sum - target_sum) | |
tuple | coeffs_rounded_aligned = ([0] * int(sample_align)) + coeffs_rounded |
Copyright 2013 Google Inc. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
def generate_fir_coeff.withinStdDev | ( | n | ) |
Returns the percent of samples within n std deviations of the normal.
Definition at line 16 of file generate_fir_coeff.py.
def generate_fir_coeff.withinStdDevRange | ( | a, | |
b | |||
) |
Returns the percent of samples within the std deviation range a, b
Definition at line 21 of file generate_fir_coeff.py.
list generate_fir_coeff.coeff_diff |
Definition at line 106 of file generate_fir_coeff.py.
generate_fir_coeff.coeff_pkg |
Definition at line 118 of file generate_fir_coeff.py.
list generate_fir_coeff.coeffs = [] |
Definition at line 67 of file generate_fir_coeff.py.
list generate_fir_coeff.coeffs_rounded = [] |
Definition at line 68 of file generate_fir_coeff.py.
tuple generate_fir_coeff.coeffs_rounded_aligned = ([0] * int(sample_align)) + coeffs_rounded |
Definition at line 132 of file generate_fir_coeff.py.
generate_fir_coeff.coeffs_rounded_sum = sum(coeffs_rounded) |
Definition at line 93 of file generate_fir_coeff.py.
def generate_fir_coeff.coverage = withinStdDevRange(current_std_dev_left, current_std_dev_right) |
Definition at line 84 of file generate_fir_coeff.py.
generate_fir_coeff.current_sample_left = sample_offset - sample_units_width |
Definition at line 71 of file generate_fir_coeff.py.
int generate_fir_coeff.current_sample_right = math.floor(current_sample_left + 1) |
Definition at line 76 of file generate_fir_coeff.py.
int generate_fir_coeff.current_std_dev_left = -std_dev_max |
Definition at line 72 of file generate_fir_coeff.py.
int generate_fir_coeff.current_std_dev_right |
Definition at line 80 of file generate_fir_coeff.py.
int generate_fir_coeff.delta = 0 |
Definition at line 92 of file generate_fir_coeff.py.
bool generate_fir_coeff.done = False |
Definition at line 74 of file generate_fir_coeff.py.
generate_fir_coeff.num_elements_to_force_round = abs(coeffs_rounded_sum - target_sum) |
Definition at line 125 of file generate_fir_coeff.py.
list generate_fir_coeff.sample_offsets |
Definition at line 49 of file generate_fir_coeff.py.
int generate_fir_coeff.sample_units_width = 5 |
Definition at line 57 of file generate_fir_coeff.py.
int generate_fir_coeff.samples_per_pixel = 4 |
Definition at line 46 of file generate_fir_coeff.py.
int generate_fir_coeff.std_dev_max = 3 |
Definition at line 60 of file generate_fir_coeff.py.
int generate_fir_coeff.subpxls_per_pixel = 3 |
Definition at line 47 of file generate_fir_coeff.py.
int generate_fir_coeff.target_sum = 0x110 |
Definition at line 64 of file generate_fir_coeff.py.