diff options
author | Matt Ettus <matt@ettus.com> | 2015-11-09 15:52:54 -0800 |
---|---|---|
committer | Matt Ettus <matt@ettus.com> | 2015-11-09 15:52:54 -0800 |
commit | 513426a62a4e6457385d5d78a307c658054d8098 (patch) | |
tree | 31267014e74cf7e0a12cbb2a8fac89653e020b89 /gr-blocks/include/gnuradio/blocks/complex_to_magphase.h | |
parent | 51c0426a42f4775b0627a2a79f45b727a91a04c5 (diff) |
Added bidirectional conversion between complex numbers and mag/phase
Diffstat (limited to 'gr-blocks/include/gnuradio/blocks/complex_to_magphase.h')
-rw-r--r-- | gr-blocks/include/gnuradio/blocks/complex_to_magphase.h | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/gr-blocks/include/gnuradio/blocks/complex_to_magphase.h b/gr-blocks/include/gnuradio/blocks/complex_to_magphase.h new file mode 100644 index 0000000000..6e0dfef27e --- /dev/null +++ b/gr-blocks/include/gnuradio/blocks/complex_to_magphase.h @@ -0,0 +1,57 @@ +/* -*- c++ -*- */ +/* + * Copyright 2005,2012,2015 Free Software Foundation, Inc. + * + * This file is part of GNU Radio + * + * GNU Radio is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 3, or (at your option) + * any later version. + * + * GNU Radio is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with GNU Radio; see the file COPYING. If not, write to + * the Free Software Foundation, Inc., 51 Franklin Street, + * Boston, MA 02110-1301, USA. + */ + +#ifndef INCLUDED_BLOCKS_COMPLEX_TO_MAGPHASE_H +#define INCLUDED_BLOCKS_COMPLEX_TO_MAGPHASE_H + +#include <gnuradio/blocks/api.h> +#include <gnuradio/sync_block.h> + +namespace gr { + namespace blocks { + + /*! + * \brief Convert a stream of gr_complex to magnitude and phase (both floats) + * \ingroup type_converters_blk + * + * \details + * output[0] is the magnitude + * output[1] is the phase (in radians) + */ + class BLOCKS_API complex_to_magphase : virtual public sync_block + { + public: + // gr::blocks::complex_to_magphase_ff::sptr + typedef boost::shared_ptr<complex_to_magphase> sptr; + + /*! + * Build a complex to magnitude and phase block. + * + * \param vlen vector len (default 1) + */ + static sptr make(size_t vlen=1); + }; + + } /* namespace blocks */ +} /* namespace gr */ + +#endif /* INCLUDED_BLOCKS_COMPLEX_TO_MAGPHASE_H */ |