mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
Document HouseholderSequence.
Incomplete: I did not explain the difference between OnTheLeft and OnTheRight, and there is only one example.
This commit is contained in:
@@ -210,9 +210,11 @@ enum {
|
||||
DontAlign = 0x2
|
||||
};
|
||||
|
||||
/** \brief Enum for specifying whether to apply or solve on the left or right.
|
||||
*/
|
||||
enum {
|
||||
OnTheLeft = 1,
|
||||
OnTheRight = 2
|
||||
OnTheLeft = 1, /**< \brief Apply transformation on the left. */
|
||||
OnTheRight = 2 /**< \brief Apply transformation on the right. */
|
||||
};
|
||||
|
||||
/* the following could as well be written:
|
||||
|
||||
Reference in New Issue
Block a user