blob: 51cf033e22dbb921347f7b24977f76bc7f57f9f9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
/* -*- c++ -*- */
/*
* Copyright 2017 Free Software Foundation, Inc.
*
* This file is part of GNU Radio
*
* SPDX-License-Identifier: GPL-3.0-or-later
*
*/
#ifndef INCLUDED_BLOCKS_EXPONENTIATE_CONST_CCI_H
#define INCLUDED_BLOCKS_EXPONENTIATE_CONST_CCI_H
#include <gnuradio/blocks/api.h>
#include <gnuradio/sync_block.h>
namespace gr {
namespace blocks {
/*!
* \brief Exponentiates a complex stream with an integer exponent
* \ingroup blocks
*
* \details
* This block raises a complex stream to an integer exponent. The exponent
* must be at least 1. There is a callback function so the exponent can be
* changed at runtime.
*
* NOTE: The algorithm uses iterative multiplication to achieve exponentiation,
* hence it is O(exponent). Therefore, this block could be inefficient for large
* exponents.
*/
class BLOCKS_API exponentiate_const_cci : virtual public gr::sync_block
{
public:
typedef std::shared_ptr<exponentiate_const_cci> sptr;
/*
* \param exponent Exponent the input stream is raised to, which must be an integer.
* The algorithm uses iterative multiplication to achieve exponentiation, hence it is
* O(exponent). Therefore, this block could be inefficient for large exponents.
* \param vlen Vector length of input/output stream
*/
static sptr make(int exponent, size_t vlen = 1);
virtual void set_exponent(int exponent) = 0;
};
} // namespace blocks
} // namespace gr
#endif /* INCLUDED_BLOCKS_EXPONENTIATE_CONST_CCI_H */
|