Difference between revisions of "ApCoCoA-1:DA.Class"
From ApCoCoAWiki
S schuster (talk | contribs) (New page: <command> <title>diffalg.Class</title> <short_description>Return the class of a given derivative.</short_description> <syntax> $diffalg.Class(ObjectName:INDET):INT </syntax> <descr...) |
S schuster (talk | contribs) |
||
Line 3: | Line 3: | ||
<short_description>Return the class of a given derivative.</short_description> | <short_description>Return the class of a given derivative.</short_description> | ||
<syntax> | <syntax> | ||
− | $diffalg.Class( | + | $diffalg.Class(X:INDET):INT |
</syntax> | </syntax> | ||
<description> | <description> | ||
− | The function Class returns the class of | + | The function Class returns the class of derivative X, i.e., the index of the differential indeterminate of which it is a derivative. |
<example> | <example> | ||
Use Q[x[1..2,0..20]]; | Use Q[x[1..2,0..20]]; |
Revision as of 09:51, 15 December 2008
diffalg.Class
Return the class of a given derivative.
Syntax
$diffalg.Class(X:INDET):INT
Description
The function Class returns the class of derivative X, i.e., the index of the differential indeterminate of which it is a derivative.
Example
Use Q[x[1..2,0..20]]; $diffalg.Class(x[1,8]); ------------------------------- 1 ------------------------------- Use Q[x[1..2,0..20]]; $diffalg.Class(x[2,8]); ------------------------------- 2 -------------------------------