Difference between revisions of "ApCoCoA-1:Num.IsAppBB"
From ApCoCoAWiki
Line 6: | Line 6: | ||
</syntax> | </syntax> | ||
<description> | <description> | ||
− | + | <em>Please note:</em> The function(s) explained on this page is/are using the <em>ApCoCoAServer</em>. You will have to start the ApCoCoAServer in order to use it/them. | |
− | + | <par/> | |
Checks if a set of polynomials is an approximate border basis with respect to an order ideal. | Checks if a set of polynomials is an approximate border basis with respect to an order ideal. | ||
<itemize> | <itemize> | ||
Line 33: | Line 33: | ||
<type>apcocoaserver</type> | <type>apcocoaserver</type> | ||
<type>polynomial</type> | <type>polynomial</type> | ||
+ | <type>borderbasis</type> | ||
</types> | </types> | ||
<key>Num.IsAppBB</key> | <key>Num.IsAppBB</key> | ||
<key>IsAppBB</key> | <key>IsAppBB</key> | ||
+ | <key>numerical.isappbb</key> | ||
<wiki-category>Package_numerical</wiki-category> | <wiki-category>Package_numerical</wiki-category> | ||
</command> | </command> |
Revision as of 11:57, 24 April 2009
Num.IsAppBB
Checks if a given set of polynomials is an approximate border basis.
Syntax
Num.IsAppBB(Polys:LIST, OI:LIST, Epsilon:RAT):RAT;
Description
Please note: The function(s) explained on this page is/are using the ApCoCoAServer. You will have to start the ApCoCoAServer in order to use it/them.
Checks if a set of polynomials is an approximate border basis with respect to an order ideal.
@param Polys A list of polynomials.
@param OI A list containing the order ideal.
@param Epsilon Rational number
@return A number which specifies how close the Polys are to an exact border basis
Example
Res := Num.AVI([[1,1],[0,1]],0); Num.IsAppBB(Res[1],Res[2],0.1); -- CoCoAServer: computing Cpu Time = 0.031 ------------------------------- -- CoCoAServer: computing Cpu Time = 0 ------------------------------- 0 -------------------------------
See also