From: wolf Date: Mon, 24 Apr 2006 23:13:44 +0000 (+0000) Subject: We now do have identity matrices. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=50f6e14424129e6f5cae0255416e25b801d198c8;p=dealii-svn.git We now do have identity matrices. git-svn-id: https://svn.dealii.org/trunk@12881 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/doc/news/changes.html b/deal.II/doc/news/changes.html index 021e7db38d..dd02cde18d 100644 --- a/deal.II/doc/news/changes.html +++ b/deal.II/doc/news/changes.html @@ -442,6 +442,19 @@ inconvenience this causes.
    +
  1. New: There is a new class IdentityMatrix that represents an + efficient version of the matrix with ones on the diagonal and + zeros everywhere else. The main usefulness of this matrix lies + in the fact that most other important matrix classes have + assignment operators and copy constructors that allow to + conveniently fill a (sparse, full) matrix with the identity + matrix. +
    + (WB 2006/04/24) +

    + +
  2. New: There are now assignment operators from BlockVector to Vector and back.