Changes http://wiki.axiom-developer.org/MantepseSpad2/diff
--
??changed:
if F has RetractableTo Symbol and S has RetractableTo Symbol then
- qShiftHP: Symbol -> (LGOPT -> HPSPEC)
- ++ \spad{qshiftHP options} returns a specification for Hermite-Pade
- ++ approximation with the $q$-shift operator
-
- guessqRec: Symbol -> GUESSER
- ++ \spad{guessqRec q} returns a guesser that finds an ordinary
+ ShiftHP: Symbol -> (LGOPT -> HPSPEC)
+ ++ \spad{shiftHP q} returns a specification for Hermite-Pade
+ ++ approximation with the q-shift operator
+
+ guessRec: Symbol -> GUESSER
+ ++ \spad{guessRec q} returns a guesser that finds an ordinary
++ q-difference equation whose first values are given by l, using the
??changed:
- guessqPRec: Symbol -> GUESSER
- ++ \spad{guessqPRec q} returns a guesser that tries to find
+ guessPRec: Symbol -> GUESSER
+ ++ \spad{guessPRec q} returns a guesser that tries to find
++ a linear q-recurrence with polynomial coefficients whose first
??changed:
++ values are given by l, using the given options. It is equivalent
- ++ to \spadfun{guessqRec}\spad{(q)} with \spad{maxPower == 1}.
-
- guessqRat: Symbol -> GUESSER
- ++ \spad{guessqRat q} returns a guesser that tries to find a
+ ++ to \spadfun{guessRec}\spad{(q)} with \spad{maxPower == 1}.
+
+ guessRat: Symbol -> GUESSER
+ ++ \spad{guessRat q} returns a guesser that tries to find a
++ q-rational function whose first values are given by l, using the
??changed:
++ q-rational function whose first values are given by l, using the
- ++ given options. It is equivalent to \spadfun{guessqRec} with
+ ++ given options. It is equivalent to \spadfun{guessRec} with
++ \spad{(l, maxShift == 0, maxPower == 1, allDegrees == true)}.
??changed:
- qShiftHP(q: Symbol): (LGOPT -> HPSPEC) ==
+ ShiftHP(q: Symbol): (LGOPT -> HPSPEC) ==
partitions := FilteredPartitionStream #1
??changed:
opts: LGOPT := cons(displayAsGF(false)$GuessOption, #2)
- guessHPaux(#1, (qShiftHP q)(opts), opts)
-
- guessqPRec(q: Symbol): GUESSER ==
+ guessHPaux(#1, (ShiftHP q)(opts), opts)
+
+ guessPRec(q: Symbol): GUESSER ==
opts: LGOPT := append([displayAsGF(false)$GuessOption,
??changed:
maxPower(1)$GuessOption], #2)
- guessHPaux(#1, (qShiftHP q)(opts), opts)
-
- guessqRat(q: Symbol): GUESSER ==
+ guessHPaux(#1, (ShiftHP q)(opts), opts)
+
+ guessRat(q: Symbol): GUESSER ==
opts := append([displayAsGF(false)$GuessOption,
??changed:
allDegrees(true)$GuessOption], #2)
- guessHPaux(#1, (qShiftHP q)(opts), opts)
+ guessHPaux(#1, (ShiftHP q)(opts), opts)
--
forwarded from http://wiki.axiom-developer.org/[EMAIL PROTECTED]