ADMB Documentation  -a65f1c97
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
gdbprintlib.h
Go to the documentation of this file.
1 // $Id$
9 #ifndef _GDBPRINT_H_
10 #define _GDBPRINT_H_
11 
12 #include <fvar.hpp>
13 #include <admodel.h>
14 #include <df1b2fun.h>
15 
16 void pad();
17 
18 void pad(double v);
19 
20 void pad(const adstring & v);
21 
22 void pad(const dvar3_array & v);
23 void pad(const dvar3_array & v,int i);
24 void pad(const dvar3_array & v,int i,int j);
25 void pad(const dvar3_array & v,int i,int j,int k);
26 
27 void pad(const dvar4_array & v);
28 void pad(const dvar4_array & v,int i);
29 void pad(const dvar4_array & v,int i,int j);
30 void pad(const dvar4_array & v,int i,int j,int k);
31 
32 void pad(const d4_array & v);
33 void pad(const d4_array & v,int i);
34 void pad(const d4_array & v,int i,int j);
35 void pad(const d4_array & v,int i,int j,int k);
36 
37 void pad(const d3_array & v);
38 void pad(const d3_array & v,int i);
39 void pad(const d3_array & v,int i,int j);
40 void pad(const d3_array & v,int i,int j,int k);
41 
42 void pad(const i3_array & v);
43 void pad(const i3_array & v,int i);
44 void pad(const i3_array & v,int i,int j);
45 void pad(const i3_array & v,int i,int j,int k);
46 
47 void pad(const i4_array & v);
48 void pad(const i4_array & v,int i);
49 void pad(const i4_array & v,int i,int j);
50 void pad(const i4_array & v,int i,int j,int k);
51 void pad(const i4_array & v,int i,int j,int k,int l);
52 
53 void pad(const dvar_vector & v);
54 void pad(const dvar_vector & v,int i);
55 
56 void pad(const prevariable & v);
57 void pad(const dvector & v);
58 void pad(const ivector & v);
59 
60 void pad(const dvar_matrix & v);
61 void pad(const dvar_matrix & v,int i);
62 void pad(const dvar_matrix & v,int i,int j);
63 
64 void pad(const dmatrix & v);
65 
66 void pad(const dfsdmat & v);
67 
68 void pad(const imatrix & v);
69 void pad(const imatrix & v,int i);
70 void pad(const imatrix & v,int i,int j);
71 
72 void pads(const dvar_vector & v);
73 void pads(const dvar_vector & v,int i);
74 
75 void padp(const dmatrix & v,int i);
76 void padp(const dvar_matrix & v,int i);
77 
78 void padsum(const dvar_vector & v);
79 void padsum(const dvector & v);
80 void padsum(const ivector & v);
81 void padsum(const dvar_matrix & v);
82 void padsum(const dmatrix & v);
83 void padsum(const imatrix & v);
84 
85 #endif
Base class for dvariable.
Definition: fvar.hpp:1315
void padsum(const dvar_vector &v)
Print the sum of a dvar_vector to the screen.
void pads(const dvar_vector &v, int i)
Print an element of a dvar_vector to the screen in scientific notation.
Description not yet available.
Definition: imatrix.h:69
Description not yet available.
Definition: fvar.hpp:5433
Vector of double precision numbers.
Definition: dvector.h:50
Description not yet available.
Definition: fvar.hpp:3232
ADMB variable vector.
Definition: fvar.hpp:2172
Description not yet available.
Definition: fvar.hpp:5769
Description not yet available.
Definition: fvar.hpp:5161
Array of integers(int) with indexes from index_min to indexmax.
Definition: ivector.h:50
Author: David Fournier Copyright (c) 2008-2012 Regents of the University of California.
Description not yet available.
Description not yet available.
Definition: fvar.hpp:2819
Description not yet available.
Definition: fvar.hpp:4197
void padp(const dmatrix &v, int i)
Print a vector slice of a dmatrix to the screen, with 12 significant figures.
Class definition of matrix with derivitive information .
Definition: fvar.hpp:2480
Description not yet available.
Description not yet available.
Definition: fvar.hpp:3944
Description not yet available.
Definition: fvar.hpp:3727
void pad()
Do nothing, this will be included by ADMB lexical analyzer so that the library is usable from within ...
Definition: gdbprintlib.cpp:29