Coverage for kwave/enums.py: 100%

11 statements  

« prev     ^ index     » next       coverage.py v6.5.0, created at 2022-10-24 11:52 -0700

1from enum import Enum 

2 

3################################################################ 

4# literals that link the discrete cosine and sine transform types with 

5# their type definitions in the functions dtt1D, dtt2D, and dtt3D 

6 

7 

8class DiscreteCosine(Enum): 

9 TYPE_1 = 1 

10 TYPE_2 = 2 

11 TYPE_3 = 3 

12 TYPE_4 = 4 

13 

14 

15class DiscreteSine(Enum): 

16 TYPE_1 = 1 

17 TYPE_2 = 2 

18 TYPE_3 = 3 

19 TYPE_4 = 4 

20 

21 

22################################################################