ivector / free_ivector

int** ivector(int nl, int nh);

Allocate an int vector with subscript range v[nl..nh].

void free_ivector(int* v, int nl);

Deallocate an int vector allocated with dvector.

Parameters:
vVector to deallocate.
nlLow element index.
nhHigh element index.

Returns:
Integer vector.

Header:
#include "vecutils.h"