GNU Radio Manual and C++ API Reference 3.10.5.1
The Free & Open Software Radio Ecosystem
complex_to_magphase.h
Go to the documentation of this file.
1/* -*- c++ -*- */
2/*
3 * Copyright 2005,2012,2015 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 INCLUDED_BLOCKS_COMPLEX_TO_MAGPHASE_H
12#define INCLUDED_BLOCKS_COMPLEX_TO_MAGPHASE_H
13
14#include <gnuradio/blocks/api.h>
15#include <gnuradio/sync_block.h>
16
17namespace gr {
18namespace blocks {
19
20/*!
21 * \brief Convert a stream of gr_complex to magnitude and phase (both floats)
22 * \ingroup type_converters_blk
23 *
24 * \details
25 * output[0] is the magnitude
26 * output[1] is the phase (in radians)
27 */
29{
30public:
31 // gr::blocks::complex_to_magphase_ff::sptr
32 typedef std::shared_ptr<complex_to_magphase> sptr;
33
34 /*!
35 * Build a complex to magnitude and phase block.
36 *
37 * \param vlen vector len (default 1)
38 */
39 static sptr make(size_t vlen = 1);
40};
41
42} /* namespace blocks */
43} /* namespace gr */
44
45#endif /* INCLUDED_BLOCKS_COMPLEX_TO_MAGPHASE_H */
Convert a stream of gr_complex to magnitude and phase (both floats)
Definition: complex_to_magphase.h:29
std::shared_ptr< complex_to_magphase > sptr
Definition: complex_to_magphase.h:32
static sptr make(size_t vlen=1)
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
GNU Radio logging wrapper.
Definition: basic_block.h:29