Overview
Comment: | Added abs => fabs rule. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
b71c0fac8f4e4307bc4384e0aa2d177d |
User & Date: | geraint@users.sourceforge.net on 2002-03-26 12:11:12 |
Other Links: | branch diff | manifest | tags |
Context
2002-04-02
| ||
09:16:39 |
Tidied up library search paths, now assumes that system libraries are set up correctly. For Debian, this means installing the following: blas-dev, fftw-dev, lapack-dev, libncurses5-dev, libkpathsea-dev, libreadline-dev It may also be necessary to run /sbin/ldconfig on the relevant directories (especially Octave's). check-in: c9e54fdc43 user: geraint@users.sourceforge.net tags: origin/master, trunk | |
2002-03-26
| ||
12:11:12 | Added abs => fabs rule. check-in: b71c0fac8f user: geraint@users.sourceforge.net tags: origin/master, trunk | |
12:10:04 | Improved message format, directed to file (MTT.Hybrd_messages). check-in: 7276780e17 user: geraint@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/lib/reduce/fix_c.r from [ce0b4c95c5] to [0428d6f425].
︙ | ︙ | |||
10 11 12 13 14 15 16 17 18 | FOR ALL f,g,x LET df(pow(f,g),x)= pow(f,g-1) * (df(f,x)*g + df(g,x)*f*log(f))$ %% Special cases FOR ALL x LET pow(x,0) = 1$ FOR ALL x LET pow(x,1) = x$ END$ | > > | 10 11 12 13 14 15 16 17 18 19 20 | FOR ALL f,g,x LET df(pow(f,g),x)= pow(f,g-1) * (df(f,x)*g + df(g,x)*f*log(f))$ %% Special cases FOR ALL x LET pow(x,0) = 1$ FOR ALL x LET pow(x,1) = x$ OPERATOR fabs$ FOR ALL x let abs(x) = fabs(x)$ END$ |