R3Data
Class for R3F Data
xaratustrah@github Jul-2022
R3FData
Bases: IQBase
Source code in iqtools/r3fdata.py
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 |
|
read(nframes=10, lframes=1024, sframes=0)
Read a section of the file.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
nframes |
int
|
Number of frames to be read. Defaults to 10. |
10
|
lframes |
int
|
Length of each frame. Defaults to 1024. |
1024
|
sframes |
int
|
Starting frame. Defaults to 0. |
0
|
Source code in iqtools/r3fdata.py
27 28 29 30 31 32 33 34 35 |
|
read_all_blocks()
Reads all data blocks at once
Returns:
Type | Description |
---|---|
numpy.ndarray: Complex valued block |
Source code in iqtools/r3fdata.py
47 48 49 50 51 52 53 |
|
read_blocks(nblocks=1)
Reads a number of data blocks. Each block contains 8178 samples each 2 bytes + an additional 28 byte footer making a total size of 16384, since fs is fixed to 112msps, each block will be ca. 73us long
Parameters:
Name | Type | Description | Default |
---|---|---|---|
nblocks |
int
|
Number of blocks to read. Defaults to 1. |
1
|
Returns:
Type | Description |
---|---|
numpy.ndarray: Complex valued block |
Source code in iqtools/r3fdata.py
56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 |
|
read_header()
Reads the header and sets the value in the objects.
Source code in iqtools/r3fdata.py
91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 |
|
read_samples(nsamples, offset=0)
Reads a certain number of samples
Parameters:
Name | Type | Description | Default |
---|---|---|---|
nsamples |
int
|
Number of samples to read |
required |
offset |
int
|
Starting frame. Defaults to 0. |
0
|
Source code in iqtools/r3fdata.py
37 38 39 40 41 42 43 44 |
|