Ticket #304 (enhancement)
Opened 2 months ago
gr.skiphead -> long long param
Status: new
| Reported by: | guest | Assigned to: | eb |
|---|---|---|---|
| Priority: | normal | Milestone: | to-be-decided |
| Component: | gnuradio-core | Version: | 3.1svn |
| Keywords: | skiphead longlong large window simulation | Cc: | |
gr.skiphead internally uses the type "long long". But the size parameter has type size_t, that is normally "int". This is inconvenient.
For simulations, it is advantageous to specifiy a very large window. E.g. the fastest way to qualify your demapper BER performance is to average over the bit errors (use a gnuradio block). Use an average window of size 1e8, and skip the first 1e8 - 1 values. With a subsequent gr.limit( .. 1), you retrieve the last estimate. That way, the vector sink doesn't consume up your memory.
Attachments
Change History
10/03/08 06:21:24: Modified by guest
- attachment gr_skiphead_r9703.diff added.

change size_t -> long long