aboutsummaryrefslogtreecommitdiff
path: root/src/mtx_svd.c
blob: c046a7311692329087250d09006eeb24817438e9 (plain)
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
/*
 *  iemmatrix
 *
 *  objects for manipulating simple matrices
 *  mostly refering to matlab/octave matrix functions
 *  this functions depends on the GNU scientific library
 *
 * Copyright (c) 2009, Franz Zotter
 * 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"
#include <stdlib.h>

#ifdef HAVE_LIBGSL
#include <gsl/gsl_linalg.h>
#endif

static t_class *mtx_svd_class;

typedef struct _MTXSvd_ MTXSvd;
struct _MTXSvd_
{
  t_object x_obj;
#ifdef HAVE_LIBGSL
  gsl_matrix *u;
  gsl_vector *s;
  gsl_matrix *v;
  gsl_vector *w;
#endif
  t_outlet *list_u_out;
  t_outlet *list_s_out;
  t_outlet *list_v_out;
  t_atom *list_u;
  t_atom *list_s;
  t_atom *list_v;
  int rows;
  int columns;
};

#ifdef HAVE_LIBGSL
static void allocMTXusvw (MTXSvd *x) 
{
     x->u=(gsl_matrix*)gsl_matrix_alloc(x->rows,x->columns);
     x->s=(gsl_vector*)gsl_vector_alloc(x->columns);
     x->v=(gsl_matrix*)gsl_matrix_alloc(x->columns,x->columns);
     x->w=(gsl_vector*)gsl_vector_alloc(x->columns);

     x->list_u=(t_atom*)calloc(sizeof(t_atom),x->rows*x->columns+2);
     x->list_s=(t_atom*)calloc(sizeof(t_atom),x->columns);
     x->list_v=(t_atom*)calloc(sizeof(t_atom),x->columns*x->columns+2);
}

static void deleteMTXusvw (MTXSvd *x) 
{
   if (x->list_u!=0)
      free(x->list_u);
   if (x->list_s!=0)
      free(x->list_s);
   if (x->list_v!=0)
      free(x->list_v);

   x->list_u = x->list_s = x->list_v = 0;

   if (x->u!=0)
      gsl_matrix_free(x->u);
   if (x->s!=0)
      gsl_vector_free(x->s);
   if (x->v!=0)
      gsl_matrix_free(x->v);
   if (x->w!=0)
      gsl_vector_free(x->w);

   x->u = 0;
   x->s = 0;
   x->v = 0;
   x->w = 0;
}
#endif

static void deleteMTXSvd (MTXSvd *x) 
{
#ifdef HAVE_LIBGSL
   deleteMTXSvd(x);
#endif
}

static void *newMTXSvd (t_symbol *s, int argc, t_atom *argv)
{
  MTXSvd *x = (MTXSvd *) pd_new (mtx_svd_class);
  x->list_u_out = outlet_new (&x->x_obj, gensym("matrix"));
  x->list_s_out = outlet_new (&x->x_obj, gensym("list"));
  x->list_v_out = outlet_new (&x->x_obj, gensym("matrix"));
  x->list_u = 0; 
  x->list_s = 0;
  x->list_v = 0;
#ifdef HAVE_LIBGSL
  x->u=0;
  x->s=0;
  x->v=0;
  x->w=0;
#endif
  
  return ((void *) x);
} 

static void mTXSvdBang (MTXSvd *x)
{
  if (x->list_u) {
    outlet_anything(x->list_v_out, gensym("matrix"), x->columns*x->columns+2, x->list_v);
    outlet_anything(x->list_s_out, gensym("list"), x->columns, x->list_s);
    outlet_anything(x->list_u_out, gensym("matrix"), x->rows*x->columns+2, x->list_u);
  }
}

static void mTXSvdMatrix (MTXSvd *x, t_symbol *s, 
			      int argc, t_atom *argv)
{
  int rows = atom_getint (argv++);
  int columns = atom_getint (argv++);
  int size = rows * columns;
  int in_size = argc-2;
  int n;


#ifdef HAVE_LIBGSL
  /* size check */
  if (!size) 
    post("mtx_svd: invalid dimensions");
  else if (in_size<size) 
    post("mtx_svd: sparse matrix not yet supported: use \"mtx_check\"");
  else if (rows<columns)
     post("mtx_svd: gsl_linalg_SVD_decomp does not support M<N");
  else {
     x->rows=rows;
     x->columns=columns;

    deleteMTXusvw(x);
    allocMTXusvw(x);

    for (n=0;n<in_size;n++) 
       x->u->data[n]=(double) atom_getfloat(argv++);
    
    gsl_linalg_SV_decomp(x->u,x->v,x->s,x->w);

    SETFLOAT((x->list_u),(float) x->rows);
    SETFLOAT((x->list_u+1),(float) x->columns);
    for (n=0;n<in_size;n++)
       SETFLOAT((x->list_u+2+n), (float) x->u->data[n]);

    for (n=0;n<x->columns;n++)
       SETFLOAT((x->list_s+n),(float) x->s->data[n]);

    SETFLOAT((x->list_v),(float) x->columns);
    SETFLOAT((x->list_v+1),(float) x->columns);
    in_size=x->columns*x->columns;
    for (n=0;n<in_size;n++)
       SETFLOAT((x->list_v+n+2), (float) x->v->data[n]);

    mTXSvdBang(x);
  }
#else
    post("mtx_svd: implementation requires gsl");
#endif

}

void mtx_svd_setup (void)
{
  mtx_svd_class = class_new 
    (gensym("mtx_svd"),
     (t_newmethod) newMTXSvd,
     (t_method) deleteMTXSvd,
     sizeof (MTXSvd),
     CLASS_DEFAULT, A_GIMME, 0);
  class_addbang (mtx_svd_class, (t_method) mTXSvdBang);
  class_addmethod (mtx_svd_class, (t_method) mTXSvdMatrix, gensym("matrix"), A_GIMME,0);
}

void iemtx_svd_setup(void){
  mtx_svd_setup();
}