ADMB Documentation  -a65f1c97
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
ivec4.cpp
Go to the documentation of this file.
1 /*
2  * $Id$
3  *
4  * Author: David Fournier
5  * Copyright (c) 2008-2012 Regents of the University of California
6  */
11 #include "fvar.hpp"
12 
17 void ivector::fill(const char * s)
18 {
19  dvector tmp(*this);
20  tmp.fill(s);
21  *this=ivector(tmp);
22 }
23 
28 void lvector::fill(const char * s)
29 {
30  dvector tmp(*this);
31  tmp.fill(s);
32  *this=lvector(tmp);
33 }
lvector(void)
Default constructor.
Definition: lvector.cpp:30
ivector()
Default constructor.
Definition: ivector.cpp:37
Vector of double precision numbers.
Definition: dvector.h:50
Author: David Fournier Copyright (c) 2008-2012 Regents of the University of California.
void fill(const char *s)
Description not yet available.
Definition: ivec4.cpp:28
void fill(const char *s)
Fill vectors from values in string s.
Definition: dvect10.cpp:43
void fill(const char *s)
Description not yet available.
Definition: ivec4.cpp:17