aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/snippets/IOFormat.cpp
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2008-08-23 19:41:00 +0000
committerGravatar Gael Guennebaud <g.gael@free.fr>2008-08-23 19:41:00 +0000
commitbfe86b8fc0434cf03838bc1534f9f810594f2f08 (patch)
tree942566f88571c1fd7753e54ac1c55c0df5c3e307 /doc/snippets/IOFormat.cpp
parentc3f46cf55b7fab237edb379f501aecc619dc0038 (diff)
* add documentation of the cool (?) "print with format" feature
* move the ioformat.cpp test to a documentation example * rename IoFormat => IOFormat
Diffstat (limited to 'doc/snippets/IOFormat.cpp')
-rw-r--r--doc/snippets/IOFormat.cpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/doc/snippets/IOFormat.cpp b/doc/snippets/IOFormat.cpp
new file mode 100644
index 000000000..9db70980c
--- /dev/null
+++ b/doc/snippets/IOFormat.cpp
@@ -0,0 +1,14 @@
+std::string sep = "\n----------------------------------------\n";
+Matrix3f m1;
+m1 << 1.111111, 2, 3.33333, 4, 5, 6, 7, 8.888888, 9;
+
+IOFormat CommaInitFmt(4, Raw, ", ", ", ", "", "", " << ", ";");
+IOFormat CleanFmt(4, AlignCols, ", ", "\n", "[", "]");
+IOFormat OctaveFmt(4, AlignCols, ", ", ";\n", "", "", "[", "]");
+IOFormat HeavyFmt(4, AlignCols, ", ", ";\n", "[", "]", "[", "]");
+
+std::cout << m1 << sep;
+std::cout << m1.format(CommaInitFmt) << sep;
+std::cout << m1.format(CleanFmt) << sep;
+std::cout << m1.format(OctaveFmt) << sep;
+std::cout << m1.format(HeavyFmt) << sep;