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 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277
|
/*
interp2d.c
Ruby/GSL: Ruby extension library for GSL (GNU Scientific Library)
(C) Copyright 2001-2006 by Yoshiki Tsunesada
Ruby/GSL is free software: you can redistribute it and/or modify it
under the terms of the GNU General Public License.
This library is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY.
*/
#ifdef GSL_2_0_LATER
#include "include/rb_gsl_interp2d.h"
VALUE cgsl_interp2d_accel; /* this is used also in spline2d.c */
extern VALUE cgsl_vector, cgsl_matrix;
static VALUE rb_gsl_interp2d_alloc(int argc, VALUE *argv, VALUE self)
{
rb_gsl_interp2d *sp = NULL;
const gsl_interp2d_type *T = NULL;
double *xptr = NULL, *yptr = NULL, *zptr = NULL;
size_t sizex = 0, sizey = 0, sizez = 0, stride = 1;
T = get_interp2d_type(argv[0]);
if (argc == 3) { // type, sizex, sizey
sizex = FIX2INT(argv[1]);
sizey = FIX2INT(argv[2]);
}
else if (argc == 4) { // type, xarr, yarr, zarr
xptr = get_vector_ptr(argv[1], &stride, &sizex);
yptr = get_vector_ptr(argv[2], &stride, &sizey);
zptr = get_vector_ptr(argv[3], &stride, &sizez);
}
else {
rb_raise(rb_eRuntimeError, "Expected args: (type, xn, yn) \
or (type, xarr, yarr, zarr");
}
if (sizex == 0 || sizey == 0) rb_raise(rb_eRuntimeError, "Interp2d size not given.");
sp = ALLOC(rb_gsl_interp2d);
sp->p = gsl_interp2d_alloc(T, sizex, sizey);
sp->xacc = gsl_interp_accel_alloc();
sp->yacc = gsl_interp_accel_alloc();
if (xptr && yptr && zptr) gsl_interp2d_init(sp->p, xptr, yptr, zptr, sizex, sizey);
return Data_Wrap_Struct(self, 0, rb_gsl_interp2d_free, sp);
}
static VALUE rb_gsl_interp2d_init(VALUE self, VALUE xarr, VALUE yarr, VALUE zarr)
{
rb_gsl_interp2d *rgi = NULL;
double *xptr = NULL, *yptr = NULL, *zptr = NULL;
size_t xsize, ysize, zsize, stride;
xptr = get_vector_ptr(xarr, &stride, &xsize);
yptr = get_vector_ptr(yarr, &stride, &ysize);
zptr = get_vector_ptr(zarr, &stride, &zsize);
Data_Get_Struct(self, rb_gsl_interp2d, rgi);
gsl_interp2d_init(rgi->p, xptr, yptr, zptr, xsize, ysize);
return self;
}
static VALUE rb_gsl_interp_evaluate(
VALUE self, VALUE xarr, VALUE yarr, VALUE zarr, VALUE xx, VALUE yy,
double (*eval)(const gsl_interp2d * interp,
const double xa[], const double ya[], const double za[],
const double x, const double y, gsl_interp_accel * xacc,
gsl_interp_accel * yacc))
{
VALUE is_swapped = rb_cvar_get(CLASS_OF(self), rb_intern("@@swapped"));
VALUE temp;
if (is_swapped != Qnil && is_swapped == Qtrue) {
temp = xx;
xx = yy;
yy = temp;
}
rb_gsl_interp2d *rgi = NULL;
double *xptr = NULL, *yptr = NULL, *zptr = NULL;
gsl_vector *vx = NULL, *vy = NULL, *vnew = NULL;
gsl_matrix *mx = NULL, *my = NULL, *mnew = NULL;
VALUE ary, x, y;
double val;
size_t i, j, xsize, ysize, zsize, stridex, stridey, stridez;
Data_Get_Struct(self, rb_gsl_interp2d, rgi);
xptr = get_vector_ptr(xarr, &stridex, &xsize);
if (xsize != rgi->p->xsize ) {
rb_raise(rb_eTypeError, "size mismatch (xa:%d != %d)", (int) xsize,
(int) rgi->p->xsize);
}
yptr = get_vector_ptr(yarr, &stridey, &ysize);
if (ysize != rgi->p->ysize ) {
rb_raise(rb_eTypeError, "size mismatch (ya:%d != %d)", (int) ysize,
(int) rgi->p->ysize);
}
zptr = get_vector_ptr(zarr, &stridez, &zsize);
if (zsize != xsize*ysize ) {
rb_raise(rb_eTypeError, "size mismatch (za:%d != %zu)", (int) zsize,
(int) xsize*ysize);
}
if (CLASS_OF(xx) == rb_cRange) xx = rb_gsl_range2ary(xx);
if (CLASS_OF(yy) == rb_cRange) yy = rb_gsl_range2ary(yy);
if (TYPE(xx) != TYPE(yy)) {
rb_raise(rb_eTypeError,"xx and yy must be same type. xx = %d yy = %d.",
TYPE(xx), TYPE(yy));
}
switch (TYPE(xx)) {
case T_FIXNUM: case T_BIGNUM: case T_FLOAT:
Need_Float(xx);
return rb_float_new((*eval)(rgi->p, xptr, yptr, zptr, NUM2DBL(xx), NUM2DBL(yy),
rgi->xacc, rgi->yacc));
case T_ARRAY:
if (RARRAY_LEN(xx) != RARRAY_LEN(yy)) {
rb_raise(rb_eRuntimeError, "xx and yy must be same sized Array.");
}
ary = rb_ary_new2(RARRAY_LEN(xx));
for (i = 0; i < (unsigned)RARRAY_LEN(xx); i++) {
x = rb_ary_entry(xx, i);
y = rb_ary_entry(yy, i);
Need_Float(x);
Need_Float(y);
val = (*eval)(rgi->p, xptr, yptr, zptr, NUM2DBL(x), NUM2DBL(y), rgi->xacc,
rgi->yacc);
rb_ary_store(ary, i, rb_float_new(val));
}
return ary;
default:
if (VECTOR_P(xx)) {
Data_Get_Struct(xx, gsl_vector, vx);
Data_Get_Struct(yy, gsl_vector, vy);
if (vx->size != vy->size) {
rb_raise(rb_eRuntimeError, "xx and yy must be same sized Vectors.");
}
vnew = gsl_vector_alloc(vx->size);
for (i = 0; i < vx->size; i++) {
val = (*eval)(rgi->p, xptr, yptr, zptr, gsl_vector_get(vx, i),
gsl_vector_get(vy, i), rgi->xacc, rgi->yacc);
gsl_vector_set(vnew, i, val);
}
return Data_Wrap_Struct(cgsl_vector, 0, gsl_vector_free, vnew);
} else if (MATRIX_P(xx)) {
Data_Get_Struct(xx, gsl_matrix, mx);
Data_Get_Struct(xx, gsl_matrix, my);
if ((mx->size1 != my->size1) || (mx->size2 != my->size2)) {
rb_raise(rb_eRuntimeError, "xx and yy must be same sized Matrices.");
}
mnew = gsl_matrix_alloc(mx->size1, mx->size2);
for (i = 0; i < mx->size1; i++) {
for (j = 0; j < mx->size2; j++) {
val = (*eval)(rgi->p, xptr, yptr, zptr, gsl_matrix_get(mx, i, j),
gsl_matrix_get(my, i, j), rgi->xacc, rgi->yacc);
gsl_matrix_set(mnew, i, j, val);
}
}
return Data_Wrap_Struct(cgsl_matrix, 0, gsl_matrix_free, mnew);
} else {
rb_raise(rb_eTypeError, "wrong argument type %s", rb_class2name(CLASS_OF(xx)));
}
}
}
static VALUE rb_gsl_interp2d_eval(VALUE self, VALUE xarr, VALUE yarr, VALUE zarr,
VALUE xx, VALUE yy)
{
return rb_gsl_interp_evaluate(self, xarr, yarr, zarr, xx, yy, gsl_interp2d_eval);
}
/*
Function that is called by the Ruby GC for cleaning up this structure.
*/
static void rb_gsl_interp2d_free(rb_gsl_interp2d *fr)
{
gsl_interp2d_free(fr->p);
gsl_interp_accel_free(fr->xacc);
gsl_interp_accel_free(fr->yacc);
free((rb_gsl_interp2d*) fr);
}
/*
Define constants for deciding type of interpolation.
*/
static void rb_gsl_interp2d_define_const(VALUE self)
{
rb_define_const(self, "BICUBIC", INT2FIX(GSL_INTERP2D_BICUBIC));
rb_define_const(self, "BILINEAR", INT2FIX(GSL_INTERP2D_BILINEAR));
}
const gsl_interp2d_type* get_interp2d_type(VALUE t)
{
int type;
char name[32];
switch(TYPE(t)) {
case T_FIXNUM:
type = FIX2INT(t);
switch (type) {
case 0: return gsl_interp2d_bicubic; break;
case 1: return gsl_interp2d_bilinear; break;
default:
rb_raise(rb_eRuntimeError, "Cannot recognize type %d.\n", type);
}
case T_STRING:
strcpy(name, STR2CSTR(t));
if (str_tail_grep("bicubic", name) == 0) {
return gsl_interp2d_bicubic;
}
else if (str_tail_grep("bicubic", name) == 0) {
return gsl_interp2d_bilinear;
}
else {
rb_raise(rb_eRuntimeError, "Cannot recognize type %s.\n", name);
}
default:
rb_raise(rb_eRuntimeError, "Unknown type.");
}
}
static VALUE rb_gsl_interp2d_info(VALUE self)
{
rb_gsl_interp2d *p;
char buf[256];
Data_Get_Struct(self, rb_gsl_interp2d, p);
snprintf(buf, sizeof(buf)-1,
"Class: %s\n"
"SuperClass: %s\n"
"Type: %s\n"
"xmin: %f\n"
"xmax: %f\n"
"ymin: %f\n"
"ymax: %f\n"
"xsize: %d\n"
"ysize: %d\n",
rb_class2name(CLASS_OF(self)),
rb_class2name(RCLASS_SUPER(CLASS_OF(self))),
gsl_interp2d_name(p->p),
p->p->xmin,
p->p->xmax,
p->p->ymin,
p->p->ymax,
(int) p->p->xsize,
(int) p->p->ysize);
buf[sizeof(buf) - 1] = '\0';
return rb_str_new2(buf);
}
void Init_gsl_interp2d(VALUE module)
{
VALUE cgsl_interp2d;
cgsl_interp2d = rb_define_class_under(module, "Interp2d", cGSL_Object);
cgsl_interp2d_accel = rb_define_class_under(cgsl_interp2d, "Accel", cGSL_Object);
rb_define_singleton_method(cgsl_interp2d, "alloc", rb_gsl_interp2d_alloc, -1);
rb_gsl_interp2d_define_const(cgsl_interp2d);
rb_define_method(cgsl_interp2d, "init", rb_gsl_interp2d_init, 3);
rb_define_method(cgsl_interp2d, "eval", rb_gsl_interp2d_eval, 5);
rb_define_method(cgsl_interp2d, "info", rb_gsl_interp2d_info, 0);
}
#endif
|