summaryrefslogtreecommitdiff
path: root/gr-blocks/grc/blocks_multiply_conjugate_cc.xml
diff options
context:
space:
mode:
Diffstat (limited to 'gr-blocks/grc/blocks_multiply_conjugate_cc.xml')
-rw-r--r--gr-blocks/grc/blocks_multiply_conjugate_cc.xml35
1 files changed, 35 insertions, 0 deletions
diff --git a/gr-blocks/grc/blocks_multiply_conjugate_cc.xml b/gr-blocks/grc/blocks_multiply_conjugate_cc.xml
new file mode 100644
index 000000000..cf0acf4d8
--- /dev/null
+++ b/gr-blocks/grc/blocks_multiply_conjugate_cc.xml
@@ -0,0 +1,35 @@
+<?xml version="1.0"?>
+<!--
+###################################################
+##Multiply Conjugate Block:
+## 2 complex inputs, 1 complex output
+###################################################
+ -->
+<block>
+ <name>Multiply Conjugate</name>
+ <key>blocks_multiply_conjugate_cc</key>
+ <import>from gnuradio import blocks</import>
+ <make>blocks.multiply_conjugate_cc($vlen)</make>
+ <param>
+ <name>Vec Length</name>
+ <key>vlen</key>
+ <value>1</value>
+ <type>int</type>
+ </param>
+ <check>$vlen &gt; 0</check>
+ <sink>
+ <name>in0</name>
+ <type>complex</type>
+ <vlen>$vlen</vlen>
+ </sink>
+ <sink>
+ <name>in1</name>
+ <type>complex</type>
+ <vlen>$vlen</vlen>
+ </sink>
+ <source>
+ <name>out</name>
+ <type>complex</type>
+ <vlen>$vlen</vlen>
+ </source>
+</block>