ApCoCoA-1:Num.ContainsLinearRelations: Difference between revisions

From ApCoCoAWiki
m Bot: Category moved
m fixed links to namespace ApCoCoA
Line 26: Line 26:
     </description>
     </description>
     <seealso>
     <seealso>
       <see>Introduction to CoCoAServer</see>
       <see>ApCoCoA-1:Introduction to CoCoAServer|Introduction to CoCoAServer</see>
     </seealso>
     </seealso>
     <types>
     <types>

Revision as of 08:36, 7 October 2020

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

Introduction to CoCoAServer