diff options
author | Johnathan Corgan | 2012-06-29 08:10:15 -0700 |
---|---|---|
committer | Johnathan Corgan | 2012-06-29 08:10:15 -0700 |
commit | f2e815329402f170231c054e108b531094d046be (patch) | |
tree | 07586e7b5b4fb31a728a4a2999a23ea70223846b /gr-blocks/grc/blocks_conjugate_cc.xml | |
parent | a3b74a25fcba67f61bf3cabb25286201f1263b0a (diff) | |
download | gnuradio-f2e815329402f170231c054e108b531094d046be.tar.gz gnuradio-f2e815329402f170231c054e108b531094d046be.tar.bz2 gnuradio-f2e815329402f170231c054e108b531094d046be.zip |
blocks: added gr::blocks::conjugate_cc
Diffstat (limited to 'gr-blocks/grc/blocks_conjugate_cc.xml')
-rw-r--r-- | gr-blocks/grc/blocks_conjugate_cc.xml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gr-blocks/grc/blocks_conjugate_cc.xml b/gr-blocks/grc/blocks_conjugate_cc.xml new file mode 100644 index 000000000..152f797b2 --- /dev/null +++ b/gr-blocks/grc/blocks_conjugate_cc.xml @@ -0,0 +1,20 @@ +<?xml version="1.0"?> +<!-- +################################################### +##Complex Conjugate +################################################### + --> +<block> + <name>Complex Conjugate</name> + <key>blocks_conjugate_cc</key> + <import>from gnuradio import blocks</import> + <make>blocks.conjugate_cc()</make> + <sink> + <name>in</name> + <type>complex</type> + </sink> + <source> + <name>out</name> + <type>complex</type> + </source> +</block> |