Artifact e4816384d3eb86b225f75208e3d8149229b81c3fdc7273e093089f982706ffd4:
- Executable file
r37/lisp/csl/html/r37_0588.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: 919) [annotate] [blame] [check-ins using] [more...]
<A NAME=find_companion> <TITLE>find_companion</TITLE></A> <b><a href=r37_idx.html>INDEX</a></b><p><p> <B>FIND_COMPANION</B> _ _ _ _ _ _ _ _ _ _ _ _ <B>operator</B><P> <P> <P> <P> <P> <H3> syntax: </H3> <em>find_companion</em>(<matrix>,<x>) <P> <P> <P> <matrix> :- a <A HREF=r37_0345.html>matrix</A>. <P> <P> <x> :- the variable. <P> <P> Given a companion matrix, <em>find_companion</em> finds the polynomial from which it was made. <P> <P> <P> <H3> examples: </H3> <P><PRE><TT> C := companion(x^4+17*x^3-9*x^2+11,x); [0 0 0 -11] [ ] [1 0 0 0 ] c := [ ] [0 1 0 9 ] [ ] [0 0 1 -17] find_companion(C,x); 4 3 2 x +17*x -9*x +11 </TT></PRE><P>Related functions: <A HREF=r37_0584.html>companion</A>. <P> <P>