mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
Half-way commit prefixing object names. I am forced to commit now
because I renamed a file once with a wrong filename and svn refuses to let me rename it again, tells me i should propagate first.
This commit is contained in:
@@ -12,7 +12,7 @@ int main(int, char **)
|
||||
|
||||
cout << "Here is a 2x2 matrix m:" << endl << m << endl;
|
||||
cout << "Let us now build a 4x4 matrix m2 by assembling together four 2x2 blocks." << endl;
|
||||
MatrixXd m2(4,4); // dynamic matrix with initial size 4x4 and uninitialized entries
|
||||
EiMatrixXd m2(4,4); // dynamic matrix with initial size 4x4 and uninitialized entries
|
||||
// notice how we are mixing fixed-size and dynamic-size types.
|
||||
|
||||
cout << "In the top-left block, we put the matrix m shown above." << endl;
|
||||
|
||||
Reference in New Issue
Block a user