Changeset 8236:fe57f4b54e6d
- Timestamp:
- 01/27/08 14:01:09 (5 years ago)
- Branch:
- default
- File:
-
- 1 edited
-
sage/calculus/calculus.py (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
sage/calculus/calculus.py
r8218 r8236 1508 1508 variable in the expression, then you must explicitly supply a variable. 1509 1509 If you supply a variable $x$ followed by a number $n$, then it will 1510 differentiate $n$ times with respect to $ n$.1510 differentiate $n$ times with respect to $x$. 1511 1511 1512 1512 You may supply more than one variable. Each variable may optionally be … … 4436 4436 r""" 4437 4437 Returns the arguments of \code{self}. The order that the variables appear 4438 in \code{self.arg uments()} is the order that is used in evaluating the elements4438 in \code{self.args()} is the order that is used in evaluating the elements 4439 4439 of \code{self}. 4440 4440 … … 4450 4450 return self._args 4451 4451 4452 def arguments(self): 4453 r""" 4454 Returns the arguments of \code{self}. The order that the variables appear 4455 in \code{self.arguments()} is the order that is used in evaluating the elements 4456 of \code{self}. 4457 4458 EXAMPLES: 4459 sage: x,y = var('x,y') 4460 sage: f(x,y) = 2*x+y 4461 sage: f.parent().arguments() 4462 (x, y) 4463 sage: f(y,x) = 2*x+y 4464 sage: f.parent().arguments() 4465 (y, x) 4466 """ 4467 return self.args() 4452 arguments = args 4468 4453 4469 4454 def zero_element(self):
Note: See TracChangeset
for help on using the changeset viewer.
