Artifact 11a5de51b791604ec8033f63b3d4274918b997a332439c36e8f90dfed6f7b3ad:
- Executable file
r37/lisp/csl/html/r37_0622.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: 926) [annotate] [blame] [check-ins using] [more...]
<A NAME=vandermonde> <TITLE>vandermonde</TITLE></A> <b><a href=r37_idx.html>INDEX</a></b><p><p> <B>VANDERMONDE</B> _ _ _ _ _ _ _ _ _ _ _ _ <B>operator</B><P> <P> <P> <P> <P> <H3> syntax: </H3> <em>vandermonde</em>({<expr\_list>}) <P> <P> <P> (If you are feeling lazy then the braces can be omitted.) <P> <P> <expr\_list> :- list of algebraic expressions. <P> <P> <em>vandermonde</em>creates the vandermonde matrix from the <expr\_list>. <P> <P> This is the square matrix in which the (i,j)'th entry is <expr\_list>(i)^(j-1). <P> <P> It has dimension n where n is the number of expressions. <P> <P> <P> <H3> examples: </H3> <P><PRE><TT> vandermonde({x,2*y,3*z}); [ 2 ] [1 x x ] [ ] [ 2] [1 2*y 4*y ] [ ] [ 2] [1 3*z 9*z ] </TT></PRE><P>