[eigen] Error in the documentation |
[ Thread Index |
Date Index
| More lists.tuxfamily.org/eigen Archives
]
- To: eigen@xxxxxxxxxxxxxxxxxxx
- Subject: [eigen] Error in the documentation
- From: Sameer Agarwal <sameeragarwal@xxxxxxxxxx>
- Date: Sun, 8 Jan 2012 23:27:39 -0800
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=gamma; h=mime-version:date:message-id:subject:from:to:x-system-of-record :content-type; bh=NyehAjfGOP/Fg78IepI7/RWftC6wKoxvDA+hhqkNkog=; b=1zncUabsNZL8QUakgdgsT9BPTGAqpvQNQ9eFfrV3dkGeOUcDJyDqJQIHW8Pj07yKMm XCjPYl211Xt21gwfvdlis3Hn7TabDDjCWWC6dq3UUknGxgitsxEM1YEO72FTXZYlD1An khURDZdOFyAhc/rPXslbwCK47kHiVFODcSUBU=
Hi Guys,
There is a small but significant error in
http://eigen.tuxfamily.org/dox/QuickRefPage.html
Where rankupdate is described as
A += a * B.adjoint() * B
where as it should be
A += A * B * B.adjoint()
which is what the code implements and the doxygen documentation
correctly reflects this.
Thanks,
Sameer