Correlation Estimator: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
(add example flowgraph and output) |
||
Line 15: | Line 15: | ||
; Threshold (''R'') | ; Threshold (''R'') | ||
: Threshold of correlator | : Threshold of correlator: 1-(Probability of False Alarm). Default 0.9. | ||
; Threshold Method | ; Threshold Method | ||
: | : options: [Absolute, Dynamic] | ||
== Example Flowgraph == | == Example Flowgraph == | ||
This flowgraph is extracted from [https://github.com/gnuradio/gnuradio/blob/master/gr-digital/examples/demod/test_corr_est.grc] | |||
[[File:Test_corr_est_fg.png|800px]] | |||
== Example Output == | |||
[[File:Test_corr_est_out.png|800px]] | |||
== Source Files == | == Source Files == | ||
Line 36: | Line 42: | ||
; Block definition | ; Block definition | ||
: [https://github.com/gnuradio/gnuradio | : [https://github.com/gnuradio/gnuradio/blob/master/gr-digital/grc/digital_corr_est_cc.block.yml] |
Revision as of 01:40, 2 March 2021
Correlates the input signal against the provided vector of samples and outputs a phase and symbol timing estimate.
Parameters
(R): Run-time adjustable
- Symbols
- Set of symbols to correlate against (e.g., a sync word).
- Samples per Symbol
- Samples per symbol
- Tag Marking Delay (R)
- Tag marking delay in samples after the corr_start tag
- Threshold (R)
- Threshold of correlator: 1-(Probability of False Alarm). Default 0.9.
- Threshold Method
- options: [Absolute, Dynamic]
Example Flowgraph
This flowgraph is extracted from [1]
Example Output
Source Files
- C++ files
- TODO
- Header files
- TODO
- Public header files
- TODO
- Block definition
- [2]