taylortemplate INDEX

TAYLORTEMPLATE _ _ _ _ _ _ _ _ _ _ _ _ operator

The template of a Taylor kernel, i.e. the list of all variables with respect to which expansion took place together with expansion point and order can be extracted using

syntax:

taylortemplate(<expression>) or taylortemplate <simple_expression>

This returns a list of lists with the three elements (VAR,VAR0,ORDER). An error is signalled if the argument is not a Taylor kernel.

examples:


    hugo := taylor(exp(x),x,0,2); 

                  1  2      3
  HUGO := 1 + X + -*X  + O(X )
                  2


    taylortemplate hugo; 

  {{X,0,2}}