From: Christian Bauer Date: Tue, 30 Sep 2003 20:23:23 +0000 (+0000) Subject: documentation update X-Git-Tag: release_1-1-4~16 X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=commitdiff_plain;h=e98841136efa88c951edafc0cd43ba1343f20b5b documentation update --- diff --git a/NEWS b/NEWS index 819a5dd5..c4300e77 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,21 @@ This file records noteworthy changes. +1.1.4 () +* Lists and matrices can now be initialized from comma-separated lists of + expressions, like this: + + lst l; + l = x, 2, y, x+y; + + matrix M(3, 3); + M = x, y, 0, + -y, x, 0, + 0, 0, 1; + + This is both faster and produces much smaller code than the old constructors + lst(ex, ex, ...) and matrix(unsigned, unsigned, lst), especially in the case + of matrices, and is now the recommended way to create these objects. + 1.1.3 (22 August 2003) * Added new symbolic functions for better integration with nestedsums: (multiple) polylogarithm Li(), Nielsen's generalized polylogarithm S(),