Add: Difference between revisions

From GNU Radio
Jump to navigation Jump to search
 
(One intermediate revision by the same user not shown)
Line 12: Line 12:


== Parameters ==
== Parameters ==
; IO Type
: Supported data types
:* Complex
:* Float
:* Int
:* Short
; Vec Length
: Length of the vector
; Num Inputs
; Num Inputs
: Number of streams to add
: Number of streams to add
Line 26: Line 36:


; C++ files
; C++ files
: [https://github.com/gnuradio/gnuradio/blob/master/gr-blocks/lib/add_blk_impl.cc]
: [https://github.com/gnuradio/gnuradio/blob/main/gr-blocks/lib/add_blk_impl.cc add_blk_impl.cc]


; Header files
; Header files
: [https://github.com/gnuradio/gnuradio/blob/master/gr-blocks/lib/add_blk_impl.h]
: [https://github.com/gnuradio/gnuradio/blob/main/gr-blocks/lib/add_blk_impl.h add_blk_impl.h]


; Public header files
; Public header files
: [https://github.com/gnuradio/gnuradio/blob/master/gr-blocks/include/gnuradio/blocks/add_blk.h]
: [https://github.com/gnuradio/gnuradio/blob/main/gr-blocks/include/gnuradio/blocks/add_blk.h add_blk.h]


; Block definition
; Block definition
: [https://github.com/gnuradio/gnuradio/blob/master/gr-blocks/grc/blocks_add_xx.block.yml]
: [https://github.com/gnuradio/gnuradio/blob/main/gr-blocks/grc/blocks_add_xx.block.yml blocks_add_xx.block.yml]

Latest revision as of 09:23, 25 August 2022

Add samples across all input streams.

For all n samples on all M input streams x_m:

output[n] = sum( x_0[n], x_1[n], ..., x_m[n])

Supported Data Types

  • Complex
  • Float
  • Int
  • Short

Parameters

IO Type
Supported data types
  • Complex
  • Float
  • Int
  • Short
Vec Length
Length of the vector
Num Inputs
Number of streams to add

Example Flowgraph

This flowgraph uses an Add Block to generate the classic "dial tone".

Add block fg.png

Add Block out.png

Source Files

C++ files
add_blk_impl.cc
Header files
add_blk_impl.h
Public header files
add_blk.h
Block definition
blocks_add_xx.block.yml