Maple Professional
Maple Academic
Maple Student Edition
Maple Personal Edition
Maple Player
Maple Player for iPad
MapleSim Professional
MapleSim Academic
Maple T.A. - Testing & Assessment
Maple T.A. MAA Placement Test Suite
Möbius - Online Courseware
Machine Design / Industrial Automation
Aerospace
Vehicle Engineering
Robotics
Power Industries
System Simulation and Analysis
Model development for HIL
Plant Modeling for Control Design
Robotics/Motion Control/Mechatronics
Other Application Areas
Mathematics Education
Engineering Education
High Schools & Two-Year Colleges
Testing & Assessment
Students
Financial Modeling
Operations Research
High Performance Computing
Physics
Live Webinars
Recorded Webinars
Upcoming Events
MaplePrimes
Maplesoft Blog
Maplesoft Membership
Maple Ambassador Program
MapleCloud
Technical Whitepapers
E-Mail Newsletters
Maple Books
Math Matters
Application Center
MapleSim Model Gallery
User Case Studies
Exploring Engineering Fundamentals
Teaching Concepts with Maple
Maplesoft Welcome Center
Teacher Resource Center
Student Help Center
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