Changeset 8236:fe57f4b54e6d


Ignore:
Timestamp:
01/27/08 14:01:09 (5 years ago)
Author:
Carl Witty <cwitty@…>
Branch:
default
Message:

calculus.py changes requested by Jason in his review of #1945

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sage/calculus/calculus.py

    r8218 r8236  
    15081508        variable in the expression, then you must explicitly supply a variable. 
    15091509        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$. 
    15111511 
    15121512        You may supply more than one variable. Each variable may optionally be 
     
    44364436        r""" 
    44374437        Returns the arguments of \code{self}.  The order that the variables appear 
    4438         in \code{self.arguments()} is the order that is used in evaluating the elements 
     4438        in \code{self.args()} is the order that is used in evaluating the elements 
    44394439        of \code{self}. 
    44404440 
     
    44504450        return self._args 
    44514451 
    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 
    44684453 
    44694454    def zero_element(self): 
Note: See TracChangeset for help on using the changeset viewer.