GNU Radio Manual and C++ API Reference 3.10.5.1
The Free & Open Software Radio Ecosystem
add_const_v.h
Go to the documentation of this file.
1/* -*- c++ -*- */
2/*
3 * Copyright 2004,2006,2010,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#ifndef ADD_CONST_V_H
12#define ADD_CONST_V_H
13
14#include <gnuradio/blocks/api.h>
15#include <gnuradio/sync_block.h>
16#include <cstdint>
17
18namespace gr {
19namespace blocks {
20
21/*!
22 * \brief output[m] = input[m] + constant vector for all M streams.
23 * \ingroup math_operators_blk
24 */
25template <class T>
26class BLOCKS_API add_const_v : virtual public sync_block
27{
28
29public:
30 typedef std::shared_ptr<add_const_v<T>> sptr;
31
32 /*!
33 * \brief Create an instance of add_const_v
34 * \param k additive constant vector
35 */
36 static sptr make(std::vector<T> k);
37
38 /*!
39 * \brief Return additive constant vector
40 */
41 virtual std::vector<T> k() const = 0;
42
43 /*!
44 * \brief Set additive constant vector
45 */
46 virtual void set_k(std::vector<T> k) = 0;
47};
48
54
55} /* namespace blocks */
56} /* namespace gr */
57
58#endif /* ADD_CONST_V_H */
output[m] = input[m] + constant vector for all M streams.
Definition: add_const_v.h:27
static sptr make(std::vector< T > k)
Create an instance of add_const_v.
virtual void set_k(std::vector< T > k)=0
Set additive constant vector.
std::shared_ptr< add_const_v< T > > sptr
Definition: add_const_v.h:30
virtual std::vector< T > k() const =0
Return additive constant vector.
synchronous 1:1 input to output with history
Definition: sync_block.h:26
#define BLOCKS_API
Definition: gr-blocks/include/gnuradio/blocks/api.h:18
add_const_v< std::int16_t > add_const_vss
Definition: add_const_v.h:50
add_const_v< float > add_const_vff
Definition: add_const_v.h:52
add_const_v< gr_complex > add_const_vcc
Definition: add_const_v.h:53
add_const_v< std::uint8_t > add_const_vbb
Definition: add_const_v.h:49
add_const_v< std::int32_t > add_const_vii
Definition: add_const_v.h:51
GNU Radio logging wrapper.
Definition: basic_block.h:29