|
7 | 7 | squeeze_coeffs_list = [
|
8 | 8 | # The order of coefficients is [a0, a1, a2, ..., an]
|
9 | 9 | # Negative cubic squeeze coefficients
|
10 |
| - [-0.2, -0.01, -0.001, -0.0001], |
| 10 | + [-0.01, -0.0005, -0.0005, -1e-6], |
11 | 11 | # Positive cubic squeeze coefficients
|
12 | 12 | [0.2, 0.01, 0.001, 0.0001],
|
13 | 13 | # Positive and negative cubic squeeze coefficients
|
14 | 14 | [0.2, -0.01, 0.002, -0.0001],
|
15 | 15 | # Quadratic squeeze coefficients
|
16 |
| - [-0.2, 0.005, -0.007], |
| 16 | + [-0.2, 0.005, -0.0004], |
17 | 17 | # Linear squeeze coefficients
|
18 | 18 | [0.1, 0.3],
|
19 | 19 | # 4th order squeeze coefficients
|
20 |
| - [0.2, -0.01, 0.001, -0.001, 0.0004], |
| 20 | + [0.2, -0.01, 0.001, -0.001, 0.0001], |
21 | 21 | # Zeros and non-zeros, the full polynomial is applied
|
22 | 22 | [0, 0.03, 0, -0.0001],
|
23 | 23 | # Testing zeros, expect no squeezing
|
|
36 | 36 | # UC10: Morph range starts and ends earlier than target, same grid density
|
37 | 37 | (np.linspace(-2, 10, 121), np.linspace(0, 20, 201)),
|
38 | 38 | # UC12: Morph range wider than target, same grid density
|
39 |
| - (np.linspace(-2, 20, 221), np.linspace(0, 10, 101)), |
| 39 | + (np.linspace(-2, 20, 201), np.linspace(0, 10, 101)), |
40 | 40 | ]
|
41 | 41 |
|
42 | 42 |
|
|
0 commit comments