GRASS GIS 8 Programmer's Manual
8.5.0dev(2024)-602118adcc
|
#include <stdio.h>
#include <math.h>
#include <unistd.h>
#include <grass/gis.h>
#include <grass/vector.h>
#include <grass/dbmi.h>
#include <grass/interpf.h>
Go to the source code of this file.
Functions | |
int | IL_check_at_points_2d_cvdev (struct interp_params *params, struct quaddata *data, double *b, double *ertot, double zmin, double dnorm, struct triple *target_point) |
A parallel version of IL_check_at_points_2d. Sperate the cross-validation/deviation computing part and the database writing part. More... | |
Definition in file point2d_parallel.c.
int IL_check_at_points_2d_cvdev | ( | struct interp_params * | params, |
struct quaddata * | data, | ||
double * | b, | ||
double * | ertot, | ||
double | zmin, | ||
double | dnorm, | ||
struct triple * | target_point | ||
) |
A parallel version of IL_check_at_points_2d. Sperate the cross-validation/deviation computing part and the database writing part.
params | interpolation parameters |
data | data in the segment for computing, NULL for writing out |
b | solution of linear equations for computing, NULL for writing out |
ertot | total error for computing, point at single point for writing out |
zmin | min z-value for computing |
dnorm | normalization factor for computing |
target_point | point for computing or writing out |
data | current region |
b | solution of linear equations |
ertot | total error |
zmin | min z-value |
Definition at line 61 of file point2d_parallel.c.