GRASS GIS 8 Programmer's Manual
8.5.0dev(2024)-847944e18e
|
Matrix memory management functions. More...
Go to the source code of this file.
Functions | |
int * | G_alloc_ivector (size_t n) |
Vector matrix memory allocation. More... | |
int ** | G_alloc_imatrix (int rows, int cols) |
Matrix memory allocation. More... | |
void | G_free_ivector (int *v) |
Vector memory deallocation. More... | |
void | G_free_imatrix (int **m) |
Matrix memory deallocation. More... | |
Matrix memory management functions.
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 2 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
Definition in file ialloc.c.
int** G_alloc_imatrix | ( | int | rows, |
int | cols | ||
) |
int* G_alloc_ivector | ( | size_t | n | ) |
void G_free_imatrix | ( | int ** | m | ) |