diff options
author | Franz Zotter <fzotter@users.sourceforge.net> | 2006-09-05 12:50:05 +0000 |
---|---|---|
committer | Franz Zotter <fzotter@users.sourceforge.net> | 2006-09-05 12:50:05 +0000 |
commit | 95a5b90c683bb257dbf3fb8e3bc43ef348e4c7fb (patch) | |
tree | 6d07de95e75d2d63f93840a856ffd11c5a0d2e17 /abs/mtx_.cmul.pd | |
parent | eca7acd6b06cb0f4f5d2262fd1f43fdda77fca6e (diff) |
a lot of complex valued matrix computation abstractions: complex matrix
inverse via real valued hermitian matrix, complex-valued division,
complex absolute square, complex multiplication...
and linear and logarithmic sweep abstractions.
svn path=/trunk/externals/iem/iemmatrix/; revision=5871
Diffstat (limited to 'abs/mtx_.cmul.pd')
-rw-r--r-- | abs/mtx_.cmul.pd | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/abs/mtx_.cmul.pd b/abs/mtx_.cmul.pd new file mode 100644 index 0000000..2c76c26 --- /dev/null +++ b/abs/mtx_.cmul.pd @@ -0,0 +1,32 @@ +#N canvas 0 0 555 380 10; +#X obj 129 110 mtx_.*; +#X obj 212 108 mtx_.*; +#X obj 397 125 mtx_.*; +#X obj 349 126 mtx_.*; +#X obj 129 136 mtx_-; +#X obj 349 149 mtx_+; +#X text 184 2 complex matrix multiplication (component wise); +#X obj 211 52 t a a; +#X obj 129 54 t a a; +#X obj 129 30 inlet realA; +#X obj 211 30 inlet imagA; +#X obj 344 30 inlet realB; +#X obj 426 30 inlet imagB; +#X obj 129 182 outlet real; +#X obj 349 180 outlet imag; +#X connect 0 0 4 0; +#X connect 1 0 4 1; +#X connect 2 0 5 1; +#X connect 3 0 5 0; +#X connect 4 0 13 0; +#X connect 5 0 14 0; +#X connect 7 0 1 0; +#X connect 7 1 2 0; +#X connect 8 0 0 0; +#X connect 8 1 3 0; +#X connect 9 0 8 0; +#X connect 10 0 7 0; +#X connect 11 0 2 1; +#X connect 11 0 0 1; +#X connect 12 0 3 1; +#X connect 12 0 1 1; |