diff options
Diffstat (limited to 'includes/labl29.hpp')
-rw-r--r-- | includes/labl29.hpp | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/includes/labl29.hpp b/includes/labl29.hpp new file mode 100644 index 0000000..0eed3ce --- /dev/null +++ b/includes/labl29.hpp @@ -0,0 +1,48 @@ +//-*- mode: c++; indent-tabs-mode: t; coding: utf-8; show-trailing-whitespace: t -*- + +// file lab29.hpp.hpp + +#ifndef _LAB29_HPP +#define _LAB29_HPP + +#include <iostream> +#include <iomanip> +#include <string> +#include <fstream> +#include <ostream> +#include <sstream> +#include <cstdlib> +#include <cstdint> +#include <cinttypes> +#include <vector> + +namespace com29 { + + // Variables. + extern int nLimInc; + extern int nIOFArr; + extern int nVar; + extern int nKey; + extern int nMaxo29; + // + extern double nPer; + extern double nXmean1; + extern double nXVar1; + extern double nStDev1; + extern double nVMax; + + // subroutine guts29. + + void guts29(std::string &, \ + std::vector<int> &, \ + std::vector<int> &, \ + int &, \ + int &, \ + double &, \ + std::vector<double> &, \ + std::vector<double> &, \ + std::vector<double> &); + +#endif // _LAB29_HPP + +// end of file lab29.hpp |