aboutsummaryrefslogtreecommitdiff
path: root/abs/mean.pd
diff options
context:
space:
mode:
authorIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2005-03-22 20:58:25 +0000
committerIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2005-03-22 20:58:25 +0000
commit2b60d55c919e7588f5aff15936e83c300b3660bb (patch)
tree14d860de7f28083d3756ad91b627de70f26788f6 /abs/mean.pd
parentc500bc542cb7cc78d6dac3f7da3bff626056b1aa (diff)
zexy-2.0:
- use of abstractions for objects that allow it - some objects are build both as externals and abstractions (as slower fallbacks) - code-layout is now 1:1 c-file<->object (this should allow for building of zexy as a collection of externals instead as a big library) - matrix-objects have moved to iemmatrix !! svn path=/trunk/externals/zexy/; revision=2641
Diffstat (limited to 'abs/mean.pd')
-rw-r--r--abs/mean.pd16
1 files changed, 16 insertions, 0 deletions
diff --git a/abs/mean.pd b/abs/mean.pd
new file mode 100644
index 0000000..29fc68e
--- /dev/null
+++ b/abs/mean.pd
@@ -0,0 +1,16 @@
+#N canvas 462 214 450 382 10;
+#X obj 253 162 length;
+#X obj 223 181 /;
+#X obj 223 116 t l l;
+#X obj 223 140 sum;
+#X text 272 20 part of zexy;
+#X text 58 60 the mean of a list of floats is the sum of its elements
+divided by its length;
+#X obj 223 87 inlet list;
+#X obj 223 203 outlet mean;
+#X connect 0 0 1 1;
+#X connect 1 0 7 0;
+#X connect 2 0 3 0;
+#X connect 2 1 0 0;
+#X connect 3 0 1 0;
+#X connect 6 0 2 0;