version  0.0.1
Defines the C++ API for MsPASS
Loading...
Searching...
No Matches
utility.h
1#ifndef _MSPASS_UTILITY_BASE_H_
2#define _MSPASS_UTILITY_BASE_H_
3/* This header is to contain assorted useful C and C++ procedures
4 appropriate for the tag utility.h. */
5#include <mspass/utility/dmatrix.h>
6#include <string>
7namespace mspass {
8namespace utility {
21std::string data_directory();
30std::vector<double> normalize_rows(const mspass::utility::dmatrix &d);
39std::vector<double> normalize_columns(const mspass::utility::dmatrix &d);
40} // namespace utility
41} // namespace mspass
42#endif
Lightweight, simple matrix object.
Definition dmatrix.h:104