File: PFV.h

package info (click to toggle)
spooles 2.2-11
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 19,656 kB
  • ctags: 3,690
  • sloc: ansic: 146,836; sh: 7,571; csh: 3,615; makefile: 1,968; perl: 74
file content (58 lines) | stat: -rw-r--r-- 1,411 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/*  PFV.h  */

/*--------------------------------------------------------------------*/
/*
   ---------------------------------------------
   purpose -- to free a pointer to float vector
              must have been created by PFVinit

   created -- 95sep22, cca
   ---------------------------------------------
*/
void
PFVfree ( 
   float   **p_fvec 
) ;
/*--------------------------------------------------------------------*/
/*
   ---------------------------------------------
   purpose -- to allocate and initialize to NULL
              a vector of pointer to float

   created -- 95sep22, cca
   ---------------------------------------------
*/
float **
PFVinit ( 
   int   size 
) ;
/*--------------------------------------------------------------------*/
/*
   -------------------------------------
   purpose -- to set up a pointer vector

   created -- 95sep22, cca
   -------------------------------------
*/
void
PFVsetup ( 
   int     length, 
   int     sizes[], 
   float   fvec[], 
   float   *p_fvec[] 
) ;
/*--------------------------------------------------------------------*/
/*
   -----------------------------------
   purpose -- to copy a pointer vector

   created -- 95sep22, cca
   -----------------------------------
*/
void
PFVcopy ( 
   int     length, 
   float   *p_fvec1[], 
   float   *p_fvec2[] 
) ;
/*--------------------------------------------------------------------*/