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 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483
|
/* histogram/test.c
*
* Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or (at
* your option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#include <config.h>
#include <stdlib.h>
#include <stdio.h>
#include <gsl/gsl_histogram.h>
#include <gsl/gsl_test.h>
#include <gsl/gsl_ieee_utils.h>
#define N 397
#define NR 10
void
test1d (void)
{
double xr[NR + 1] =
{0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0};
gsl_histogram *h, *h1, *hr, *g;
size_t i, j;
gsl_ieee_env_setup ();
h = gsl_histogram_calloc (N);
h1 = gsl_histogram_calloc (N);
g = gsl_histogram_calloc (N);
gsl_test (h->range == 0, "gsl_histogram_alloc returns valid range pointer");
gsl_test (h->bin == 0, "gsl_histogram_alloc returns valid bin pointer");
gsl_test (h->n != N, "gsl_histogram_alloc returns valid size");
hr = gsl_histogram_calloc_range (NR, xr);
gsl_test (hr->range == 0, "gsl_histogram_calloc_range returns valid range pointer");
gsl_test (hr->bin == 0, "gsl_histogram_calloc_range returns valid bin pointer");
gsl_test (hr->n != NR, "gsl_histogram_calloc_range returns valid size");
{
int status = 0;
for (i = 0; i <= NR; i++)
{
if (hr->range[i] != xr[i])
{
status = 1;
}
};
gsl_test (status, "gsl_histogram_calloc_range creates range");
}
for (i = 0; i <= NR; i++)
{
hr->range[i] = 0.0;
}
{
int status = gsl_histogram_set_ranges (hr, xr, NR+1);
for (i = 0; i <= NR; i++)
{
if (hr->range[i] != xr[i])
{
status = 1;
}
};
gsl_test (status, "gsl_histogram_set_range sets range");
}
for (i = 0; i < N; i++)
{
gsl_histogram_accumulate (h, (double) i, (double) i);
};
{
int status = 0;
for (i = 0; i < N; i++)
{
if (h->bin[i] != (double) i)
{
status = 1;
}
};
gsl_test (status, "gsl_histogram_accumulate writes into array");
}
{
int status = 0;
for (i = 0; i < N; i++)
{
if (gsl_histogram_get (h, i) != i)
status = 1;
};
gsl_test (status, "gsl_histogram_get reads from array");
}
for (i = 0; i <= N; i++)
{
h1->range[i] = 100.0 + i;
}
gsl_histogram_memcpy (h1, h);
{
int status = 0;
for (i = 0; i <= N; i++)
{
if (h1->range[i] != h->range[i])
status = 1;
};
gsl_test (status, "gsl_histogram_memcpy copies bin ranges");
}
{
int status = 0;
for (i = 0; i < N; i++)
{
if (gsl_histogram_get (h1, i) != gsl_histogram_get (h, i))
status = 1;
};
gsl_test (status, "gsl_histogram_memcpy copies bin values");
}
gsl_histogram_free (h1);
h1 = gsl_histogram_clone (h);
{
int status = 0;
for (i = 0; i <= N; i++)
{
if (h1->range[i] != h->range[i])
status = 1;
};
gsl_test (status, "gsl_histogram_clone copies bin ranges");
}
{
int status = 0;
for (i = 0; i < N; i++)
{
if (gsl_histogram_get (h1, i) != gsl_histogram_get (h, i))
status = 1;
};
gsl_test (status, "gsl_histogram_clone copies bin values");
}
gsl_histogram_reset (h);
{
int status = 0;
for (i = 0; i < N; i++)
{
if (h->bin[i] != 0)
status = 1;
}
gsl_test (status, "gsl_histogram_reset zeros array");
}
{
int status = 0;
for (i = 0; i < N; i++)
{
gsl_histogram_increment (h, (double) i);
for (j = 0; j <= i; j++)
{
if (h->bin[j] != 1)
{
status = 1;
}
}
for (j = i + 1; j < N; j++)
{
if (h->bin[j] != 0)
{
status = 1;
}
}
}
gsl_test (status, "gsl_histogram_increment increases bin value");
}
{
int status = 0;
for (i = 0; i < N; i++)
{
double x0 = 0, x1 = 0;
gsl_histogram_get_range (h, i, &x0, &x1);
if (x0 != i || x1 != i + 1)
{
status = 1;
}
}
gsl_test (status, "gsl_histogram_getbinrange returns bin range");
}
{
int status = 0;
if (gsl_histogram_max (h) != N)
status = 1;
gsl_test (status, "gsl_histogram_max returns maximum");
}
{
int status = 0;
if (gsl_histogram_min (h) != 0)
status = 1;
gsl_test (status, "gsl_histogram_min returns minimum");
}
{
int status = 0;
if (gsl_histogram_bins (h) != N)
status = 1;
gsl_test (status, "gsl_histogram_bins returns number of bins");
}
h->bin[2] = 123456.0;
h->bin[4] = -654321;
{
double max = gsl_histogram_max_val (h);
gsl_test (max != 123456.0, "gsl_histogram_max_val finds maximum value");
}
{
double min = gsl_histogram_min_val (h);
gsl_test (min != -654321.0, "gsl_histogram_min_val finds minimum value");
}
{
size_t imax = gsl_histogram_max_bin (h);
gsl_test (imax != 2, "gsl_histogram_max_bin finds maximum value bin");
}
{
size_t imin = gsl_histogram_min_bin (h);
gsl_test (imin != 4, "gsl_histogram_min_bin find minimum value bin");
}
for (i = 0; i < N; i++)
{
h->bin[i] = i + 27;
g->bin[i] = (i + 27) * (i + 1);
}
{
double sum=gsl_histogram_sum (h);
gsl_test(sum != N*27+((N-1)*N)/2, "gsl_histogram_sum sums all bin values");
}
gsl_histogram_memcpy (h1, g);
gsl_histogram_add (h1, h);
{
int status = 0;
for (i = 0; i < N; i++)
{
if (h1->bin[i] != g->bin[i] + h->bin[i])
status = 1;
}
gsl_test (status, "gsl_histogram_add histogram addition");
}
gsl_histogram_memcpy (h1, g);
gsl_histogram_sub (h1, h);
{
int status = 0;
for (i = 0; i < N; i++)
{
if (h1->bin[i] != g->bin[i] - h->bin[i])
status = 1;
}
gsl_test (status, "gsl_histogram_sub histogram subtraction");
}
gsl_histogram_memcpy (h1, g);
gsl_histogram_mul (h1, h);
{
int status = 0;
for (i = 0; i < N; i++)
{
if (h1->bin[i] != g->bin[i] * h->bin[i])
status = 1;
}
gsl_test (status, "gsl_histogram_mul histogram multiplication");
}
gsl_histogram_memcpy (h1, g);
gsl_histogram_div (h1, h);
{
int status = 0;
for (i = 0; i < N; i++)
{
if (h1->bin[i] != g->bin[i] / h->bin[i])
status = 1;
}
gsl_test (status, "gsl_histogram_div histogram division");
}
gsl_histogram_memcpy (h1, g);
gsl_histogram_scale (h1, 0.5);
{
int status = 0;
for (i = 0; i < N; i++)
{
if (h1->bin[i] != 0.5 * g->bin[i])
status = 1;
}
gsl_test (status, "gsl_histogram_scale histogram scaling");
}
gsl_histogram_memcpy (h1, g);
gsl_histogram_shift (h1, 0.25);
{
int status = 0;
for (i = 0; i < N; i++)
{
if (h1->bin[i] != 0.25 + g->bin[i])
status = 1;
}
gsl_test (status, "gsl_histogram_shift histogram shift");
}
gsl_histogram_free (h); /* free whatever is in h */
h = gsl_histogram_calloc_uniform (N, 0.0, 1.0);
gsl_test (h->range == 0,
"gsl_histogram_calloc_uniform returns valid range pointer");
gsl_test (h->bin == 0,
"gsl_histogram_calloc_uniform returns valid bin pointer");
gsl_test (h->n != N,
"gsl_histogram_calloc_uniform returns valid size");
gsl_histogram_accumulate (h, 0.0, 1.0);
gsl_histogram_accumulate (h, 0.1, 2.0);
gsl_histogram_accumulate (h, 0.2, 3.0);
gsl_histogram_accumulate (h, 0.3, 4.0);
{
size_t i1, i2, i3, i4;
double expected;
int status = gsl_histogram_find (h, 0.0, &i1);
status = gsl_histogram_find (h, 0.1, &i2);
status = gsl_histogram_find (h, 0.2, &i3);
status = gsl_histogram_find (h, 0.3, &i4);
for (i = 0; i < N; i++)
{
if (i == i1)
{
expected = 1.0;
}
else if (i == i2)
{
expected = 2.0;
}
else if (i == i3)
{
expected = 3.0;
}
else if (i == i4)
{
expected = 4.0;
}
else
{
expected = 0.0;
}
if (h->bin[i] != expected)
{
status = 1;
}
}
gsl_test (status, "gsl_histogram_find returns index");
}
{
FILE *f = fopen ("test.txt", "w");
gsl_histogram_fprintf (f, h, "%.19e", "%.19e");
fclose (f);
}
{
FILE *f = fopen ("test.txt", "r");
gsl_histogram *hh = gsl_histogram_calloc (N);
int status = 0;
gsl_histogram_fscanf (f, hh);
for (i = 0; i < N; i++)
{
if (h->range[i] != hh->range[i])
status = 1;
if (h->bin[i] != hh->bin[i])
status = 1;
}
if (h->range[N] != hh->range[N])
status = 1;
gsl_test (status, "gsl_histogram_fprintf and fscanf");
gsl_histogram_free (hh);
fclose (f);
}
{
FILE *f = fopen ("test.dat", "wb");
gsl_histogram_fwrite (f, h);
fclose (f);
}
{
FILE *f = fopen ("test.dat", "rb");
gsl_histogram *hh = gsl_histogram_calloc (N);
int status = 0;
gsl_histogram_fread (f, hh);
for (i = 0; i < N; i++)
{
if (h->range[i] != hh->range[i])
status = 1;
if (h->bin[i] != hh->bin[i])
status = 1;
}
if (h->range[N] != hh->range[N])
status = 1;
gsl_test (status, "gsl_histogram_fwrite and fread");
gsl_histogram_free (hh);
fclose (f);
}
gsl_histogram_free (h);
gsl_histogram_free (g);
gsl_histogram_free (h1);
gsl_histogram_free (hr);
}
|