<div class="func"><table class="func" width="100%"><tr><td class="tdleft"><code class="func">‣ Array</code>( <var class="Arg">A</var>, <var class="Arg">f</var> )</td><td class="tdright">( function )</td></tr></table></div>
<p>Inputs an array <span class="SimpleMath">A</span> and a function <span class="SimpleMath">f</span>. It returns the the array obtained by applying <span class="SimpleMath">f</span> to each entry of <span class="SimpleMath">A</span> (and leaves <span class="SimpleMath">A</span> unchanged).</p>
<div class="func"><table class="func" width="100%"><tr><td class="tdleft"><code class="func">‣ PermuteArray</code>( <var class="Arg">A</var>, <var class="Arg">f</var> )</td><td class="tdright">( function )</td></tr></table></div>
<p>Inputs an array <span class="SimpleMath">A</span> of dimension <span class="SimpleMath">d</span> and a permutation <span class="SimpleMath">f</span> of degree at most <span class="SimpleMath">d</span>. It returns the array <span class="SimpleMath">B</span> defined by <span class="SimpleMath">B[i1][i2]...[id] = A[f(i1)][f(i2)]...A[f(id)]</span> (and leaves <span class="SimpleMath">A</span> unchanged).</p>
<div class="func"><table class="func" width="100%"><tr><td class="tdleft"><code class="func">‣ ArraySum</code>( <var class="Arg">A</var> )</td><td class="tdright">( function )</td></tr></table></div>
<p>Inputs an array <span class="SimpleMath">A</span> and returns the sum of its entries.</p>
<div class="func"><table class="func" width="100%"><tr><td class="tdleft"><code class="func">‣ ArrayValue</code>( <var class="Arg">A</var>, <var class="Arg">x</var> )</td><td class="tdright">( function )</td></tr></table></div>
<p>Inputs an array <span class="SimpleMath">A</span> and a coordinate vector <span class="SimpleMath">x</span>. It returns the value of the entry in <span class="SimpleMath">A</span> with coordinate <span class="SimpleMath">x</span>.</p>
<div class="func"><table class="func" width="100%"><tr><td class="tdleft"><code class="func">‣ ArrayValueFunctions</code>( <var class="Arg">d</var> )</td><td class="tdright">( function )</td></tr></table></div>
<p>Inputs a positive integer <span class="SimpleMath">d</span> and returns an efficient version of the function ArrayValue for arrays of dimension <span class="SimpleMath">d</span>.</p>
<div class="func"><table class="func" width="100%"><tr><td class="tdleft"><code class="func">‣ ArrayAssign</code>( <var class="Arg">A</var>, <var class="Arg">x</var>, <var class="Arg">n</var> )</td><td class="tdright">( function )</td></tr></table></div>
<p>Inputs an array <span class="SimpleMath">A</span> and a coordinate vector <span class="SimpleMath">x</span> and an integer <span class="SimpleMath">n</span>. It sets the entry of <span class="SimpleMath">A</span> with coordinate <span class="SimpleMath">x</span> equal to <span class="SimpleMath">n</span>.</p>
<div class="func"><table class="func" width="100%"><tr><td class="tdleft"><code class="func">‣ ArrayAssignFunctions</code>( <var class="Arg">d</var> )</td><td class="tdright">( function )</td></tr></table></div>
<p>Inputs a positive integer <span class="SimpleMath">d</span> and returns an efficient version of the function ArrayAssign for arrays of dimension <span class="SimpleMath">d</span>.</p>
<div class="func"><table class="func" width="100%"><tr><td class="tdleft"><code class="func">‣ ArrayIterate</code>( <var class="Arg">d</var> )</td><td class="tdright">( function )</td></tr></table></div>
<p>Inputs a positive integer <span class="SimpleMath">d</span> and returns a function ArrayIt(Dimensions,f). This function inputs a list Dimensions of <span class="SimpleMath">d</span> positive integers and also a function <span class="SimpleMath">f(x)</span>. It applies the function <span class="SimpleMath">f(x)</span> to each integer list <span class="SimpleMath">x</span> of length <span class="SimpleMath">d</span> with entries <span class="SimpleMath">x[i]</span> in the range [1..Dimension[i]].</p>
<div class="func"><table class="func" width="100%"><tr><td class="tdleft"><code class="func">‣ BinaryArrayToTextFile</code>( <var class="Arg">file</var>, <var class="Arg">A</var> )</td><td class="tdright">( function )</td></tr></table></div>
<p>Inputs a string containing the address of a file, and an array <span class="SimpleMath">A</span> of 0s and 1s. The array represents a pure cubical complex. A representation of this complex is written to the file in a format that can be read by the CAPD (Computer Assisted Proofs in Dynamics) software developed by Marian Mrozek and others.</p>
<p>The second input <span class="SimpleMath">A</span> can also be a pure cubical complex.</p>
<div class="func"><table class="func" width="100%"><tr><td class="tdleft"><code class="func">‣ FrameArray</code>( <var class="Arg">A</var> )</td><td class="tdright">( function )</td></tr></table></div>
<p>Inputs an array <span class="SimpleMath">A</span> and returns the array obtained by appending a 0 to the beginning and end of each "row" of the array.</p>
<div class="func"><table class="func" width="100%"><tr><td class="tdleft"><code class="func">‣ UnframeArray</code>( <var class="Arg">A</var> )</td><td class="tdright">( function )</td></tr></table></div>
<p>Inputs an array <span class="SimpleMath">A</span> and returns the array obtained by removing the first and last entry in each "row" of the array.</p>
<div class="func"><table class="func" width="100%"><tr><td class="tdleft"><code class="func">‣ Add</code>( <var class="Arg">L</var>, <var class="Arg">x</var> )</td><td class="tdright">( function )</td></tr></table></div>
<p>Let <span class="SimpleMath">L</span> be a pseudo list of length <span class="SimpleMath">n</span>, and <span class="SimpleMath">x</span> an object compatible with the entries in <span class="SimpleMath">L</span>. If <span class="SimpleMath">x</span> is not in <span class="SimpleMath">L</span> then this operation converts <span class="SimpleMath">L</span> into a pseudo list of length n+1 by adding <span class="SimpleMath">x</span> as the final entry. If <span class="SimpleMath">x</span> is in <span class="SimpleMath">L</span> the operation has no effect on <span class="SimpleMath">L</span>.</p>
<div class="func"><table class="func" width="100%"><tr><td class="tdleft"><code class="func">‣ Append</code>( <var class="Arg">L</var>, <var class="Arg">K</var> )</td><td class="tdright">( function )</td></tr></table></div>
<p>Let <span class="SimpleMath">L</span> be a pseudo list and <span class="SimpleMath">K</span> a list whose objects are compatible with those in <span class="SimpleMath">L</span>. This operation applies Add(L,x) for each x in <span class="SimpleMath">K</span>.</p>
<div class="func"><table class="func" width="100%"><tr><td class="tdleft"><code class="func">‣ ListToPseudoList</code>( <var class="Arg">L</var> )</td><td class="tdright">( function )</td></tr></table></div>
<p>Inputs a list <span class="SimpleMath">L</span> and returns the pseudo list representation of <span class="SimpleMath">L</span>.</p>
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung ist noch experimentell.