Remove confusing transpose() in setLinSpaced() docs.

This commit is contained in:
Jitse Niesen 2013-02-18 17:27:41 +00:00
parent b4f6aec195
commit ba653105a2

View File

@ -1,3 +1,3 @@
VectorXf v;
v.setLinSpaced(5,0.5f,1.5f).transpose();
v.setLinSpaced(5,0.5f,1.5f);
cout << v << endl;