Artifact 442c8617d7b9b51ed7b4313877b0b4978e37bfcd10899d1c45f1e198791631ce:
- Executable file
r37/lisp/csl/html/r37_0594.html
— part of check-in
[f2fda60abd]
at
2011-09-02 18:13:33
on branch master
— Some historical releases purely for archival purposes
git-svn-id: https://svn.code.sf.net/p/reduce-algebra/code/trunk/historical@1375 2bfe0521-f11c-4a00-b80e-6202646ff360 (user: arthurcnorman@users.sourceforge.net, size: 1136) [annotate] [blame] [check-ins using] [more...]
<A NAME=hilbert> <TITLE>hilbert</TITLE></A> <b><a href=r37_idx.html>INDEX</a></b><p><p> <B>HILBERT</B> _ _ _ _ _ _ _ _ _ _ _ _ <B>operator</B><P> <P> <P> <P> <P> <H3> syntax: </H3> <em>hilbert</em>(<square\_size>,<expr>) <P> <P> <P> <square\_size> :- a positive integer. <P> <P> <expr> :- an algebraic expression. <P> <P> <em>hilbert</em>computes the square hilbert matrix of dimension <square\_size>. <P> <P> This is the symmetric matrix in which the (i,j)'th entry is 1/(i+j-<expr>). <P> <P> <P> <H3> examples: </H3> <P><PRE><TT> hilbert(3,y+x); [ - 1 - 1 - 1 ] [----------- ----------- -----------] [ x + y - 2 x + y - 3 x + y - 4 ] [ ] [ - 1 - 1 - 1 ] [----------- ----------- -----------] [ x + y - 3 x + y - 4 x + y - 5 ] [ ] [ - 1 - 1 - 1 ] [----------- ----------- -----------] [ x + y - 4 x + y - 5 x + y - 6 ] </TT></PRE><P>