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
|
/* @(#) Programs for allocating and freeing matrices
* @(#) pages 705- of numerical recipes in C 1998
* @(#)
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif /*HAVE_CONFIG_H*/
#include <vips/intl.h>
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include <vips/vips.h>
#define TINY 1.0e-200
/* @(#) Allocates and returns an pointer at the beginning of
* @(#) an integer array array[nl,nh] or
* @(#) float array array[nl,nh] or
* @(#) double array array[nl,nh]
* @(#)
* @(#) Right call
* @(#) int *im_ivector(nl, nh)
* @(#) int nl, nh;
* @(#) returns a pointer to an int array or NULL on error
* @(#)
* @(#) Right call
* @(#) float *im_fvector(nl, nh)
* @(#) int nl, nh;
* @(#) returns a pointer to a float array or NULL on error
* @(#)
* @(#) Right call
* @(#) double *im_dvector(nl, nh)
* @(#) int nl, nh;
* @(#) returns a pointer to a double array or NULL on error
* @(#)
* @(#) The following functions free the array allocated by the functions above
* @(#)
* @(#) void im_free_ivector(v, nl, nh)
* @(#) int *v;
* @(#) int nl, nh;
* @(#)
* @(#) void im_free_fvector(v, nl, nh)
* @(#) float *v;
* @(#) int nl, nh;
* @(#)
* @(#) void im_free_dvector(v, nl, nh)
* @(#) double *v;
* @(#) int nl, nh;
* @(#)
*/
int *
im_ivector(int nl, int nh)
{
int *v;
v = (int *)im_malloc(NULL,(unsigned)(nh - nl + 1) * sizeof(int));
if (v == NULL)
return(NULL);
else
return(v-nl);
}
float *im_fvector(int nl, int nh)
{
float *v;
v = (float *)im_malloc(NULL,(unsigned)(nh - nl + 1) * sizeof(float));
if (v == NULL)
return(NULL);
else
return(v-nl);
}
double *im_dvector(int nl, int nh)
{
double *v;
v = (double *)im_malloc(NULL,(unsigned)(nh - nl + 1) * sizeof(double));
if (v == NULL)
return(NULL);
else
return(v-nl);
}
void im_free_ivector(int *v, int nl, int nh)
{
im_free((char*) (v+nl));
}
void im_free_fvector(float *v, int nl, int nh)
{
im_free((char*) (v+nl));
}
void im_free_dvector(double *v, int nl, int nh)
{
im_free((char*) (v+nl));
}
/* @(#) Allocates and returns an pointer at the beginning of
* @(#) an int, float or double, two dimensional matrix[nrl,nrh][ncl,nch]
* @(#)
* @(#) Right call
* @(#) int **im_imat_alloc(nrl, nrh, ncl, nch)
* @(#) int nrl, nrh, ncl, nch;
* @(#) returns a pointer to an int matrix or NULL on error
* @(#)
* @(#) float **im_fmat_alloc(nrl, nrh, ncl, nch)
* @(#) int nrl, nrh, ncl, nch;
* @(#) returns a pointer to an int matrix or NULL on error
* @(#)
* @(#) double **im_dmat_alloc(nrl, nrh, ncl, nch)
* @(#) int nrl, nrh, ncl, nch;
* @(#) returns a pointer to a double matrix or NULL on error
* @(#)
* @(#) The following routines free the matrix allocated by the functions above
* @(#) void im_free_imat(m, nrl, nrh, ncl, nch)
* @(#) int **m;
* @(#) int nrl, nrh, ncl, nch;
* @(#)
* @(#) void im_free_fmat(m, nrl, nrh, ncl, nch)
* @(#) float **m;
* @(#) int nrl, nrh, ncl, nch;
* @(#)
* @(#) void im_free_dmat(m, nrl, nrh, ncl, nch)
* @(#) double **m;
* @(#) int nrl, nrh, ncl, nch;
* @(#)
*/
int **im_imat_alloc(int nrl, int nrh, int ncl, int nch)
{
int i;
int **m;
m = (int**)im_malloc(NULL,(unsigned)(nrh-nrl+1) * sizeof(int *));
if (m == NULL)
return(NULL);
m -= nrl;
for (i=nrl; i<=nrh; i++)
{
m[i] = (int *)im_malloc(NULL,(unsigned) (nch-ncl+1) * sizeof(int));
if (m[i] == NULL)
return(NULL);
m[i] -= ncl;
}
return (m);
}
void im_free_imat(int **m, int nrl, int nrh, int ncl, int nch)
{
int i;
for (i=nrh; i>=nrl; i--)
im_free((char*) (m[i]+ncl));
im_free((char*) (m+nrl));
}
float **im_fmat_alloc(int nrl, int nrh, int ncl, int nch)
{
int i;
float **m;
m = (float**)im_malloc(NULL,(unsigned)(nrh-nrl+1) * sizeof(float *));
if (m == NULL)
return(NULL);
m -= nrl;
for (i=nrl; i<=nrh; i++)
{
m[i] = (float *)im_malloc(NULL,(unsigned) (nch-ncl+1) * sizeof(float));
if (m[i] == NULL)
return(NULL);
m[i] -= ncl;
}
return (m);
}
void im_free_fmat(float **m, int nrl, int nrh, int ncl, int nch)
{
int i;
for (i=nrh; i>=nrl; i--)
im_free((char*) (m[i]+ncl));
im_free((char*) (m+nrl));
}
double **im_dmat_alloc(int nrl, int nrh, int ncl, int nch)
{
int i;
double **m;
m = (double**)im_malloc(NULL,(unsigned)(nrh-nrl+1) * sizeof(double *));
if (m == NULL)
return(NULL);
m -= nrl;
for (i=nrl; i<=nrh; i++)
{
m[i] = (double *)im_malloc(NULL,(unsigned) (nch-ncl+1) * sizeof(double));
if (m[i] == NULL)
return(NULL);
m[i] -= ncl;
}
return (m);
}
void im_free_dmat(double **m, int nrl, int nrh, int ncl, int nch)
{
int i;
for (i=nrh; i>=nrl; i--)
im_free((char*) (m[i]+ncl));
im_free((char*) (m+nrl));
}
|