GNU Radio Manual and C++ API Reference 3.10.5.1
The Free & Open Software Radio Ecosystem
complex_to_float.h
Go to the documentation of this file.
1/* -*- c++ -*- */
2/*
3 * Copyright 2005,2012 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_FLOAT_H
12#define INCLUDED_BLOCKS_COMPLEX_TO_FLOAT_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 1 or 2 streams of float.
22 * \ingroup type_converters_blk
23 *
24 * \details
25 * If a single output stream is attached, this will output the
26 * real part of the input complex samples. If a second output
27 * stream is connected, output[0] is the real part and output[1]
28 * is the imaginary part.
29 */
31{
32public:
33 // gr::blocks::complex_to_float_ff::sptr
34 typedef std::shared_ptr<complex_to_float> sptr;
35
36 /*!
37 * Build a complex to float block.
38 *
39 * \param vlen vector len (default 1)
40 */
41 static sptr make(size_t vlen = 1);
42};
43
44} /* namespace blocks */
45} /* namespace gr */
46
47#endif /* INCLUDED_BLOCKS_COMPLEX_TO_FLOAT_H */
Convert a stream of gr_complex to 1 or 2 streams of float.
Definition: complex_to_float.h:31
static sptr make(size_t vlen=1)
std::shared_ptr< complex_to_float > sptr
Definition: complex_to_float.h:34
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