Move inheritance from Eigen example in stand-alone file.

Also fix a small mistake (Vector3d instead of VectorXd).
This commit is contained in:
Jitse Niesen
2013-08-02 22:33:12 +01:00
parent 3444f06f68
commit 8fdffdd573
3 changed files with 47 additions and 39 deletions

View File

@@ -5,7 +5,8 @@ namespace Eigen {
There are two uses for the \c template and \c typename keywords in C++. One of them is fairly well known
amongst programmers: to define templates. The other use is more obscure: to specify that an expression refers
to a template function or a type. This regularly trips up programmers that use the %Eigen library, often
leading to error messages from the compiler that are difficult to understand.
leading to error messages from the compiler that are difficult to understand, such as "expected expression" or
"no match for operator<".
\eigenAutoToc