Difference between revisions of "ApCoCoA-1:DA.DiffOrd"
From ApCoCoAWiki
S schuster (talk | contribs) (New page: <command> <title>diffalg.DiffOrd</title> <short_description>Computes the differential order of a differential polynomial.</short_description> <syntax> $diffalg.DiffOrd(F:POLY):INT ...) |
S schuster (talk | contribs) |
||
Line 6: | Line 6: | ||
</syntax> | </syntax> | ||
<description> | <description> | ||
− | Computes the differential order of the differential polynomial F. The differential order is the maximum order of | + | Computes the differential order of the differential polynomial F. The differential order is the maximum order of the derivatives occuring in the terms of F. |
<example> | <example> | ||
Use Q[x[1..2,0..20]]; | Use Q[x[1..2,0..20]]; |
Revision as of 10:59, 8 December 2008
diffalg.DiffOrd
Computes the differential order of a differential polynomial.
Syntax
$diffalg.DiffOrd(F:POLY):INT
Description
Computes the differential order of the differential polynomial F. The differential order is the maximum order of the derivatives occuring in the terms of F.
Example
Use Q[x[1..2,0..20]]; F:=x[1,4]^2-x[2,4]^3; $diffalg.DiffOrd(F); ------------------------------- 4 -------------------------------