documentation update for alpha 3

This commit is contained in:
Benoit Jacob
2008-01-13 23:17:51 +00:00
parent 6ce996f219
commit 57d7b7d97b
6 changed files with 47 additions and 5 deletions

View File

@@ -0,0 +1,5 @@
RowVector4i v = RowVector4i::random();
cout << "Here is the vector v:" << endl << v << endl;
cout << "Here is v.start(2):" << endl << v.start(2) << endl;
v.start(2).setZero();
cout << "Now the vector v is:" << endl << v << endl;