GRASS GIS 7 Programmer's Manual
7.9.dev(2021)-e5379bbd7
|
Gradient computation. More...
#include <grass/raster3d.h>
Go to the source code of this file.
Functions | |
void | Rast3d_gradient_double (RASTER3D_Array_double *array, double *step, RASTER3D_Array_double *grad_x, RASTER3D_Array_double *grad_y, RASTER3D_Array_double *grad_z) |
Gradient computation. More... | |
Gradient computation.
(C) 2014 by the GRASS Development Team
This program is free software under the GNU General Public License (>=v2). Read the file COPYING that comes with GRASS for details.
Definition in file gradient.c.
void Rast3d_gradient_double | ( | RASTER3D_Array_double * | array, |
double * | step, | ||
RASTER3D_Array_double * | grad_x, | ||
RASTER3D_Array_double * | grad_y, | ||
RASTER3D_Array_double * | grad_z | ||
) |
Gradient computation.
Gradient computation (second order approximation) using central differencing scheme (plus forward and backward difference of second order approximation). When one or more of the cells, from which the gradient for a particular cell is computed, is null, gradient for that particular cell is set to 0.
array | pointer to RASTER3D_Array with input values | |
step | array of x, y, z steps for gradient (resolution values) | |
[out] | grad_x | pointer to RASTER3D_Array_double with gradient in x direction |
[out] | grad_y | pointer to RASTER3D_Array_double with gradient in y direction |
[out] | grad_z | pointer to RASTER3D_Array_double with gradient in z direction |
Definition at line 34 of file gradient.c.