https://github.com/cran/ltsa
Revision d1a312e52f8273b90b43b27e3e97d500010fb403 authored by A.I. McLeod on 30 October 2007, 16:55:48 UTC, committed by cran-robot on 30 October 2007, 16:55:48 UTC
0 parent
Raw File
Tip revision: d1a312e52f8273b90b43b27e3e97d500010fb403 authored by A.I. McLeod on 30 October 2007, 16:55:48 UTC
version 1.0
Tip revision: d1a312e
nrutil.h
#ifndef _UTILS_H_
#define _UTILS_H_
   
typedef double*  VECTOR;
typedef double** MATRIX;

VECTOR Vector( long n );

MATRIX Matrix( long n, long m );

void free_matrix( MATRIX hMatrix );
void free_vector( VECTOR hVector );

#endif /* _UTILS_H_ */
back to top