#include <string.h>
#include <glib.h>
#include <utils/utils.h>
#include <stdio.h>
#include <stddef.h>
#include <stdlib.h>
Go to the source code of this file.
Defines | |
#define | NR_END 1 |
#define | FREE_ARG char* |
Functions | |
void | itoa (int n, char s[]) |
float ** | matrix (long nrl, long nrh, long ncl, long nch) |
double ** | new_dmatrix (long n_rows, long n_cols) |
float *** | f3tensor (long nrl, long nrh, long ncl, long nch, long ndl, long ndh) |
double *** | new_d3tensor (long n_rows, long n_cols, long n_dep) |
void | free_matrix (float **m, long nrl, long nrh, long ncl, long nch) |
void | free_dmatrix (double **m) |
void | free_f3tensor (float ***t, long nrl, long nrh, long ncl, long nch, long ndl, long ndh) |
void | free_d3tensor (double ***t) |
#define FREE_ARG char* |
Definition at line 71 of file plumefunct.c.
#define NR_END 1 |
Definition at line 70 of file plumefunct.c.
float*** f3tensor | ( | long | nrl, | |
long | nrh, | |||
long | ncl, | |||
long | nch, | |||
long | ndl, | |||
long | ndh | |||
) |
void free_d3tensor | ( | double *** | t | ) |
void free_dmatrix | ( | double ** | m | ) |
void free_f3tensor | ( | float *** | t, | |
long | nrl, | |||
long | nrh, | |||
long | ncl, | |||
long | nch, | |||
long | ndl, | |||
long | ndh | |||
) |
void free_matrix | ( | float ** | m, | |
long | nrl, | |||
long | nrh, | |||
long | ncl, | |||
long | nch | |||
) |
void itoa | ( | int | n, | |
char | s[] | |||
) |
float** matrix | ( | long | nrl, | |
long | nrh, | |||
long | ncl, | |||
long | nch | |||
) |
double*** new_d3tensor | ( | long | n_rows, | |
long | n_cols, | |||
long | n_dep | |||
) |
double** new_dmatrix | ( | long | n_rows, | |
long | n_cols | |||
) |
Definition at line 120 of file plumefunct.c.
References eh_new, and eh_require.
Referenced by plumearray().