Float To Char: Difference between revisions

From GNU Radio
Jump to navigation Jump to search
(Added more detailed description plus an example flowgraph.)
m (Clarified the role of the 'Scale' value in the block.)
 
Line 14: Line 14:
[[File:Float-to-Char-flowgraph.png|800px]]
[[File:Float-to-Char-flowgraph.png|800px]]


The [[Signal Source]] block provides a sinusoid with an amplitude of 1. Using a ''Scale'' value of the ''Float to Char'' block of 1, the input signal will be quantized to values of -1, 0, and 1.
The [[Signal Source]] block provides a sinusoid with an amplitude of 1. Using a ''Scale'' value of the ''Float to Char'' block of 1, the input signal will be quantized to values of -1, 0, and 1. Note that the input is multiplied by the ''Scale'' value before being quantized into the ''char'' data type.


[[File:Float-to-Char-scale-1.png|800px]]
[[File:Float-to-Char-scale-1.png|800px]]

Latest revision as of 02:12, 23 March 2025

This block will convert a stream of signed 32-bit floating point values (floats) to a stream of signed 8-bit integers (char), with an optional scaling factor. The Float to Char block will quantize the input values, after being multiplied by the Scale factor, to integer values between -128 to +127. Values are rounded to the nearest integer. Any values less than -128 or greater than +127 will be clipped to these limits.

Parameters

(R): Run-time adjustable

Scale (R)
Scaling factor applied to input stream.

Example Flowgraph

An example flowgraph showing the affect that the Float to Char block has on an input signal.

Float-to-Char-flowgraph.png

The Signal Source block provides a sinusoid with an amplitude of 1. Using a Scale value of the Float to Char block of 1, the input signal will be quantized to values of -1, 0, and 1. Note that the input is multiplied by the Scale value before being quantized into the char data type.

Float-to-Char-scale-1.png

Using a Scale value of 127 for the Float to Char, and 1 for the Char to Float, the sinusoid looks more natural.

Float-to-Char-scale-127.png

However, zooming in on the sinusoid that has passed through the Float to Char shows that the amplitudes have been quantized to integer values.

Float-to-Char-scale-127-1-zoomed.png

If the amplitude of the input signal is higher than 127 or less than -128, the signal amplitudes will be clipped at these limits. For example, here's an example using a Scale value of 150 for the Float to Char block.

Float-to-Char-scale-150-1.png

Source Files

C++ files
float_to_char_impl.cc
Header files
float_to_char_impl.h
Block Definition
blocks_float_to_char.block.yml