VIP: Volume Image Processing


matrix.h
Go to the documentation of this file.
1/****************************************************************************
2 * PROJECT : V.I.P. Library
3 * MODULE NAME : vip/matrix.h * TYPE : Header
4 * AUTHOR : POUPON F. * CREATION : 14/03/1997
5 * VERSION : 0.1 * REVISION :
6 * LANGUAGE : C++ * EXAMPLE :
7 * DEVICE : Sun SPARC Station 5
8 ****************************************************************************
9 *
10 * DESCRIPTION : Declarations du package de calcul matriciel
11 *
12 ****************************************************************************
13 *
14 * USED MODULES :
15 *
16 ****************************************************************************
17 * REVISIONS : DATE | AUTHOR | DESCRIPTION
18 *--------------------|--------------|---------------------------------------
19 * / / | |
20 ****************************************************************************/
21
22#ifndef VIP_MATRIX_H
23#define VIP_MATRIX_H
24
25#ifdef __cplusplus
26 extern "C" {
27#endif
28
29#include <vip/volume.h>
30#include <vip/alloc.h>
31
32#include <vip/math/matrix_gen.h>
33
34#define C_NORMAL 100
35#define C_INVERSE 101
36#define C_VARIANCE 102
37
38#ifdef __cplusplus
39 }
40#endif
41
42#endif