Difference between revisions of "ApCoCoA-1:Num.ContainsLinearRelations"
From ApCoCoAWiki
(Minor update) |
|||
Line 1: | Line 1: | ||
<command> | <command> | ||
<title>Num.ContainsLinearRelations</title> | <title>Num.ContainsLinearRelations</title> | ||
− | <short_description>Checks if a given set of terms has | + | <short_description>Checks if a given set of terms has some epsilon-linear dependencies with respect to a set of points.</short_description> |
<syntax> | <syntax> | ||
Num.ContainsLinearRelations(Points:MAT, Terms:LIST of POLY, Epsilon:RAT):BOOL | Num.ContainsLinearRelations(Points:MAT, Terms:LIST of POLY, Epsilon:RAT):BOOL | ||
Line 8: | Line 8: | ||
<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. | <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/> | <par/> | ||
− | Checks if a given set of terms has | + | Checks if a given set of terms has some epsilon-linear dependencies with respect to a set of points. |
<itemize> | <itemize> |
Revision as of 20:22, 10 June 2010
Num.ContainsLinearRelations
Checks if a given set of terms has some epsilon-linear dependencies with respect to a set of points.
Syntax
Num.ContainsLinearRelations(Points:MAT, Terms:LIST of POLY, Epsilon:RAT):BOOL
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 given set of terms has some epsilon-linear dependencies with respect to a set of points.
@param Points A matrix containing the points to check.
@param Terms The terms to check
@param Epsilon Threshold number
@return True or False
Example
Num.ContainsLinearRelations([[1,1],[2,1]],[1,x],0.9); -- CoCoAServer: computing Cpu Time = 0 ------------------------------- TRUE -------------------------------
See also