Maple für Professional
Maple für Akademiker
Maple für Studenten
Maple Personal Edition
Maple Player
Maple Player für iPad
MapleSim für Professional
MapleSim für Akademiker
Maple T.A. - Testen & beurteilen
Maple T.A. MAA Placement Test Suite
Möbius - Online-Courseware
Machine Design / Industrial Automation
Luft- und Raumfahrt
Fahrzeugtechnik
Robotics
Energiebranche
System Simulation and Analysis
Model development for HIL
Anlagenmodelle für den Regelungsentwurf
Robotics/Motion Control/Mechatronics
Other Application Areas
Mathematikausbildung
Technik
Allgemein- und berufsbildende Schulen
Testen und beurteilen
Studierende
Finanzmodelle
Betriebsforschung
Hochleistungsrechnen
Physik
Live-Webinare
Aufgezeichnete Webinare
Geplante Veranstaltungen
MaplePrimes
Maplesoft-Blog
Maplesoft-Mitgliedschaft
Maple Ambassador Program
MapleCloud
Technische Whitepapers
E-Mail Newsletters
Maple-Bücher
Math Matters
Anwendungs-Center
MapleSim Modell-Galerie
Anwenderberichte
Exploring Engineering Fundamentals
Lehrkonzepte mit Maple
Maplesoft Welcome-Center
Resource-Center für Lehrer
Help-Center für Studierende
LREtools[shift] - integer shift of an expression
LREtools[delta] - single or iterated differencing of an expression
Calling Sequence
shift(e, var)
shift(e, var, i)
delta(e, var)
delta(e, var, n)
Parameters
e
-
expression
var
variable name
i
(optional) integer
n
(optional) positive integer
Description
shift returns the expression equivalent to , where i is assumed to be 1 in the two argument case.
This procedure knows about various Maple constructs, like diff, where the variable must not be simply substituted. Currently shift knows about diff, Diff, int, Int, sum, Sum, product, and Product.
Additional constructs can be added by the user. If the procedure `LREtools/shift/f` is defined then the function call LREtools[shift](f(n,x), n, 3) will invoke `LREtools/shift/f`(f(n,x), n, 3) to compute the shift.
delta(e, var) is defined to be shift(e, var, 1)-e and delta(e, var, n) is defined to be delta(shift(e, var, 1)-e, var, n-1). Thus differencing is also user-extensible by providing the extension for shift.
Examples
See Also
diff, LREtools
Download Help Document