1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
|
/*
* 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_col */
static t_class *mtx_col_class;
static void mtx_col_float(t_matrix *x, t_floatarg f)
{
int i = f;
if(i<0)i=0;
x->current_col = i;
}
static void mtx_col_matrix(t_matrix *x, t_symbol *s, int argc, t_atom *argv)
{
int row, col;
if (argc<2){ post("matrix : corrupt matrix passed"); return; }
row = atom_getfloat(argv);
col = atom_getfloat(argv+1);
if ((row<1)||(col<1)){ post("matrix : corrupt matrix passed"); return; }
if (row*col > argc-2){ post("matrix: sparse matrices not yet supported : use \"mtx_check\""); return; }
matrix_matrix2(x, s, argc, argv);
matrix_bang(x);
}
static void mtx_col_list(t_matrix *x, t_symbol *s, int argc, t_atom *argv)
{
if (argc==1){
t_float f=atom_getfloat(argv);
t_atom *ap=x->atombuffer+1+x->current_col;
if (x->current_col>x->col){
post("mtx_col : too high a column is to be set");
return;
}
if (x->current_col){
int n=x->row;
while(n--){
SETFLOAT(ap, f);
ap+=x->row+1;
}
}
matrix_bang(x);
return;
}
if (argc<x->row){
post("mtx_col : column length is too small for %dx%d-matrix", x->row, x->col);
return;
}
if (x->current_col>x->col){
post("mtx_col : too high a column is to be set");
return;
}
if(x->current_col) {
int r=x->row;
t_atom *ap=x->atombuffer+1+x->current_col;
while(r--)SETFLOAT(&ap[(x->row-r-1)*x->col], atom_getfloat(argv++));
} else {
int r=x->row;
t_atom *ap=x->atombuffer+2;
while (r--) {
t_float f=atom_getfloat(argv++);
int c=x->col;
while(c--){
SETFLOAT(ap, f);
ap++;
}
}
}
matrix_bang(x);
}
static void *mtx_col_new(t_symbol *s, int argc, t_atom *argv)
{
t_matrix *x = (t_matrix *)pd_new(mtx_col_class);
int i, j, q;
outlet_new(&x->x_obj, 0);
inlet_new(&x->x_obj, &x->x_obj.ob_pd, gensym("float"), gensym(""));
x->current_col=0;
x->col=x->row=0;
x->atombuffer=0;
switch (argc) {
case 0:break;
case 1:
i = atom_getfloat(argv);
if (i<0)i=0;
if(i)adjustsize(x, i, i);
matrix_set(x, 0);
break;
case 2:
i = atom_getfloat(argv++);if(i<0)i=0;
j = atom_getfloat(argv++);if(j<0)j=0;
if(i*j)adjustsize(x, i, j);
matrix_set(x, 0);
break;
default:
i = atom_getfloat(argv++);if(i<0)i=0;
j = atom_getfloat(argv++);if(j<0)j=0;
q = atom_getfloat(argv++);if(q<0)q=0;
if(i*j)adjustsize(x, i, j);
matrix_set(x, 0);
x->current_col=q;
}
return (x);
}
void mtx_col_setup(void)
{
mtx_col_class = class_new(gensym("mtx_col"), (t_newmethod)mtx_col_new,
(t_method)matrix_free, sizeof(t_matrix), 0, A_GIMME, 0);
class_addbang (mtx_col_class, matrix_bang);
class_addlist (mtx_col_class, mtx_col_list);
class_addmethod(mtx_col_class, (t_method)mtx_col_matrix, gensym("matrix"), A_GIMME, 0);
class_addmethod(mtx_col_class, (t_method)mtx_col_float, gensym(""), A_FLOAT, 0);
class_sethelpsymbol(mtx_col_class, gensym("iemmatrix/mtx_element"));
}
void iemtx_col_setup(void)
{
mtx_col_setup();
}
|