diff options
author | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2005-05-10 12:16:49 +0000 |
---|---|---|
committer | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2005-05-10 12:16:49 +0000 |
commit | 0c709b26ff5943db694a42fc888a3e3c7e5229a0 (patch) | |
tree | d5cf5ca4fc2ca634e4fe1c00f8e1c6566f6b32c7 /src/mtx_sum.c | |
parent | 34d0baaee68b924cd6ece00ce7610d57c770993b (diff) |
added mtx_sum
svn path=/trunk/externals/iem/iemmatrix/; revision=2937
Diffstat (limited to 'src/mtx_sum.c')
-rw-r--r-- | src/mtx_sum.c | 72 |
1 files changed, 72 insertions, 0 deletions
diff --git a/src/mtx_sum.c b/src/mtx_sum.c new file mode 100644 index 0000000..d2a6d34 --- /dev/null +++ b/src/mtx_sum.c @@ -0,0 +1,72 @@ +/* + * iemmatrix + * + * objects for manipulating simple matrices + * mostly refering to matlab/octave matrix functions + * + * Copyright (c) IOhannes m zmölnig, forum::für::umläute + * IEM, Graz, Austria + * + * For information on usage and redistribution, and for a DISCLAIMER OF ALL + * WARRANTIES, see the file, "LICENSE.txt," in this distribution. + * + */ +#include "iemmatrix.h" + +/* mtx_sum */ +/* column-wise sum + */ +static t_class *mtx_sum_class; +static void mtx_sum_matrix(t_matrix *x, t_symbol *s, int argc, t_atom *argv) +{ + int row=atom_getfloat(argv++); + int col=atom_getfloat(argv++); + int n; + + if(row*col>argc-2)post("mtx_sum: sparse matrices not yet supported : use \"mtx_check\""); + else { + t_atom *ap = (t_atom *)getbytes(col * sizeof(t_atom)), *dummy=ap; + + for(n=0;n<col;n++, dummy++){ + int i=row; + t_float f=0.f; + t_atom*ap2=argv+n; + while(i--){ + f+=atom_getfloat(ap2+col*i); + } + SETFLOAT(dummy, f); + } + + outlet_list(x->x_obj.ob_outlet, gensym("prod"), col, ap); + + freebytes(ap, (col * sizeof(t_atom))); + } +} +static void mtx_sum_list(t_matrix *x, t_symbol *s, int argc, t_atom *argv){ + t_float f=0.f; + while(argc--)f+=atom_getfloat(argv++); + outlet_float(x->x_obj.ob_outlet, f); +} + + +static void *mtx_sum_new() +{ + t_matrix *x = (t_matrix *)pd_new(mtx_sum_class); + outlet_new(&x->x_obj, 0); + x->row = x->col = 0; + x->atombuffer = 0; + + return (x); +} +void mtx_sum_setup(void) +{ + mtx_sum_class = class_new(gensym("mtx_sum"), (t_newmethod)mtx_sum_new, + (t_method)matrix_free, sizeof(t_matrix), 0, A_GIMME, 0); + class_addlist (mtx_sum_class, mtx_sum_list); + // class_addbang (mtx_sum_class, matrix_bang); + class_addmethod(mtx_sum_class, (t_method)mtx_sum_matrix, gensym("matrix"), A_GIMME, 0); + class_sethelpsymbol(mtx_sum_class, gensym("iemmatrix/mtx_sum")); +} +void iemtx_sum_setup(void){ + void mtx_sum_setup(void); +} |