Difference between revisions of "ApCoCoA-1:Num.ContainsLinearRelations"
From ApCoCoAWiki
m |
|||
Line 1: | Line 1: | ||
<command> | <command> | ||
<title>Numerical.ContainsLinearRelations</title> | <title>Numerical.ContainsLinearRelations</title> | ||
− | <short_description>Checks if a given set of | + | <short_description>Checks if a given set of terms has still some remaining linear dependencies with respect to a set of points.</short_description> |
<syntax> | <syntax> | ||
Num.ContainsLinearRelations(Points:Matrix, Terms:PolyList, Epsilon:Number):Bool]; | Num.ContainsLinearRelations(Points:Matrix, Terms:PolyList, Epsilon:Number):Bool]; | ||
Line 8: | Line 8: | ||
{{ApCoCoAServer}} Please also note that you will have to use an ApCoCoAServer with enabled BLAS/LAPACK support. | {{ApCoCoAServer}} Please also note that you will have to use an ApCoCoAServer with enabled BLAS/LAPACK support. | ||
− | Checks if a given set of | + | Checks if a given set of terms has still some remaining epsilon-linear dependencies with respect to a set of points. |
The function returns TRUE or FALSE. | The function returns TRUE or FALSE. | ||
Revision as of 13:52, 8 April 2009
Numerical.ContainsLinearRelations
Checks if a given set of terms has still some remaining linear dependencies with respect to a set of points.
Syntax
Num.ContainsLinearRelations(Points:Matrix, Terms:PolyList, Epsilon:Number):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. Please also note that you will have to use an ApCoCoAServer with enabled BLAS/LAPACK support.
Checks if a given set of terms has still some remaining epsilon-linear dependencies with respect to a set of points.
The function returns TRUE or FALSE.
Example
Num.ContainsLinearRelations([[1,1],[2,1]],[1,x],0.9); -- CoCoAServer: computing Cpu Time = 0 ------------------------------- TRUE -------------------------------
See also