GNU Radio Manual and C++ API Reference
3.9.1.0
The Free & Open Software Radio Ecosystem
divide.h
Go to the documentation of this file.
1
/* -*- c++ -*- */
2
/*
3
* Copyright 2004,2009,2012,2018 Free Software Foundation, Inc.
4
*
5
* This file is part of GNU Radio
6
*
7
* SPDX-License-Identifier: GPL-3.0-or-later
8
*
9
*/
10
11
12
#ifndef DIVIDE_H
13
#define DIVIDE_H
14
15
#include <
gnuradio/blocks/api.h
>
16
#include <
gnuradio/sync_block.h
>
17
#include <cstdint>
18
19
namespace
gr
{
20
namespace
blocks {
21
22
/*!
23
* \brief output = input[0] / input[1] / ... / input[M-1]
24
* \ingroup math_operators_blk
25
*
26
* \details
27
* Divide across all input streams.
28
*/
29
template
<
class
T>
30
class
BLOCKS_API
divide
:
virtual
public
sync_block
31
{
32
public
:
33
// gr::blocks::divide::sptr
34
typedef
std::shared_ptr<divide<T>>
sptr
;
35
36
static
sptr
make(
size_t
vlen = 1);
37
};
38
39
typedef
divide<std::int16_t>
divide_ss
;
40
typedef
divide<std::int32_t>
divide_ii
;
41
typedef
divide<float>
divide_ff
;
42
typedef
divide<gr_complex>
divide_cc
;
43
}
/* namespace blocks */
44
}
/* namespace gr */
45
46
#endif
/* DIVIDE_H */
api.h
gr::blocks::divide_ii
divide< std::int32_t > divide_ii
Definition:
divide.h:40
gr::blocks::divide::sptr
std::shared_ptr< divide< T > > sptr
Definition:
divide.h:34
gr::blocks::divide_ss
divide< std::int16_t > divide_ss
Definition:
divide.h:39
gr::blocks::divide_ff
divide< float > divide_ff
Definition:
divide.h:41
BLOCKS_API
#define BLOCKS_API
Definition:
gr-blocks/include/gnuradio/blocks/api.h:18
gr::sync_block
synchronous 1:1 input to output with history
Definition:
sync_block.h:25
sync_block.h
gr::blocks::divide_cc
divide< gr_complex > divide_cc
Definition:
divide.h:42
gr
GNU Radio logging wrapper for log4cpp library (C++ port of log4j)
Definition:
basic_block.h:29
gr::blocks::divide
output = input[0] / input[1] / ... / input[M-1]
Definition:
divide.h:30
gr-blocks
include
gnuradio
blocks
divide.h
Generated by
1.8.17