Home | History | Annotate | Download | only in snippets
      1 std::string sep = "\n----------------------------------------\n";
      2 Matrix3d m1;
      3 m1 << 1.111111, 2, 3.33333, 4, 5, 6, 7, 8.888888, 9;
      4 
      5 IOFormat CommaInitFmt(StreamPrecision, DontAlignCols, ", ", ", ", "", "", " << ", ";");
      6 IOFormat CleanFmt(4, 0, ", ", "\n", "[", "]");
      7 IOFormat OctaveFmt(StreamPrecision, 0, ", ", ";\n", "", "", "[", "]");
      8 IOFormat HeavyFmt(FullPrecision, 0, ", ", ";\n", "[", "]", "[", "]");
      9 
     10 std::cout << m1 << sep;
     11 std::cout << m1.format(CommaInitFmt) << sep;
     12 std::cout << m1.format(CleanFmt) << sep;
     13 std::cout << m1.format(OctaveFmt) << sep;
     14 std::cout << m1.format(HeavyFmt) << sep;
     15