| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
8.25 Interpolation (Pure C)
- C function:
floatmgl_data_spline (const HMDTdat,floatx,floaty,floatz) Interpolates data by cubic spline to the given point x in [0...nx-1], y in [0...ny-1], z in [0...nz-1].
- C function:
floatmgl_data_spline1 (const HMDTdat,floatx,floaty,floatz) Interpolates data by cubic spline to the given point x, y, z which assumed to be normalized in range [0, 1].
- C function:
floatmgl_data_linear (const HMDTdat,floatx,floaty,floatz) Interpolates data by linear function to the given point x in [0...nx-1], y in [0...ny-1], z in [0...nz-1].
- C function:
floatmgl_data_linear11 (const HMDTdat,floatx,floaty,floatz) Interpolates data by linear function to the given point x, y, z which assumed to be normalized in range [0, 1].
- C function:
floatmgl_data_get_value (const HMDTdat,inti,intj,intk) Gets the value in specified cell of the data with border checking.
- C function:
float *mgl_data_value (HMDTdat,inti,intj,intk) Gets the pointer to data element.
