Difference between revisions of "ApCoCoA-1:DA.Class"
From ApCoCoAWiki
m (insert version info) |
|||
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
+ | {{Version|1}} | ||
<command> | <command> | ||
<title>DA.Class</title> | <title>DA.Class</title> | ||
Line 28: | Line 29: | ||
<key>diffalg.Class</key> | <key>diffalg.Class</key> | ||
<key>differential.Class</key> | <key>differential.Class</key> | ||
− | <wiki-category>Package_diffalg</wiki-category> | + | <wiki-category>ApCoCoA-1:Package_diffalg</wiki-category> |
</command> | </command> |
Latest revision as of 09:57, 7 October 2020
This article is about a function from ApCoCoA-1. |
DA.Class
Returns the class of a given derivative.
Syntax
DA.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.
@param X Indeterminate for which the class is computed.
@return The class of indeterminate X.
Example
Use QQ[x[1..2,0..20]]; DA.Class(x[2,8]); ------------------------------- 2 -------------------------------