Medusa  1.1
Coordinate Free Mehless Method implementation
ioformats.cpp
Go to the documentation of this file.
2 
8 namespace mm {
10 Eigen::IOFormat CleanFmt(4, 0, ", ", ",\n", "[", "]");
11 Eigen::IOFormat InlineFmt(Eigen::StreamPrecision, Eigen::DontAlignCols,
12  ", ", "; ", "[", "]", "", "");
13 Eigen::IOFormat MatlabFmt(Eigen::FullPrecision, Eigen::DontAlignCols,
14  ", ", "; ", "", "", "[", "];");
15 Eigen::IOFormat MathematicaFmt(Eigen::FullPrecision, Eigen::DontAlignCols,
16  ", ", ", ", "{", "}", "{", "};");
17 Eigen::IOFormat CSVFmt(Eigen::FullPrecision, 0, ", ");
19 } // namespace mm
ioformat.hpp
mm
Root namespace for the whole library.
Definition: Gaussian.hpp:14
mm::MathematicaFmt
Eigen::IOFormat MathematicaFmt
Full precision output understood by Wolfram Mathematica.
mm::InlineFmt
Eigen::IOFormat InlineFmt
Readable inline format.
mm::MatlabFmt
Eigen::IOFormat MatlabFmt
Full precision format understood by Matlab/Octave.
mm::CleanFmt
Eigen::IOFormat CleanFmt
Clean readable multiline aligned format.
mm::CSVFmt
Eigen::IOFormat CSVFmt
Valid CSV format.