gr.noise_source_X
Available sources:
- gr.noise_source_c - Complex
- gr.noise_source_f - Floating point
- gr.noise_source_i - Integer, 4 byte
- gr.noise_source_s - Short, 2 byte
Usage:
gr.noise_source_c ( gr_noise_type_t type,
float amplitude,
long seed )
Available noise types:
- gr.GR_GAUSSIAN
- gr.GR_LAPLACIAN
- gr.GR_IMPULSE
- gr.GR_UNIFORM
Examples:
noise01 = gr.noise_source_f ( gr.GR_GAUSSIAN, 1, 2482 )
Produces:
noise02 = gr.noise_source_f ( gr.GR_IMPULSE, 100, 1843 )
Produces:
noise03 = gr.noise_source_f ( gr.GR_UNIFORM, 100, 1843)
Produces:
noise13 = gr.noise_source_f ( gr.GR_LAPLACIAN, 100, 1843 )
Produces: