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
LinearOperators[DEToOrePoly] - convert a linear ordinary differential equation to an OrePoly structure
LinearOperators[REToOrePoly] - convert a linear recurrence equation to an OrePoly structure
LinearOperators[OrePolyToDE] - convert an OrePoly structure to a linear ordinary differential equation
LinearOperators[OrePolyToRE] - convert an OrePoly structure to a linear recurrence equation
LinearOperators[FactoredOrePolyToDE] - convert a FactoredOrePoly structure to a linear ordinary differential equation
LinearOperators[FactoredOrePolyToRE] - convert a FactoredOrePoly structure to a linear recurrence equation
LinearOperators[FactoredOrePolyToOrePoly] - convert a FactoredOrePoly structure to a OrePoly structure
Calling Sequence
DEToOrePoly(eq,f)
REToOrePoly(eq,f)
OrePolyToDE(L,f)
OrePolyToRE(L,f)
FactoredOrePolyToDE(M,f)
FactoredOrePolyToRE(M,f)
FactoredOrePolyToOrePoly(M,var,case)
Parameters
eq
-
left hand side of a linear equation (either differential or recurrence)
f
function from eq, for example, f(x)
L
Ore operator
M
factored Ore operator
var
name of the independent variable
case
parameter indicating the case of the equation ('differential' or 'shift')
Description
The LinearOperators[DEToOrePoly] and LinearOperators[REToOrePoly] functions return an Ore operator K such that eq = K(f). The LinearOperators[OrePolyToDE], LinearOperators[OrePolyToRE], LinearOperators[FactoredOrePolyToDE], and LinearOperators[FactoredOrePolyToRE] functions apply the operator (L or M) to the function f. The LinearOperators[FactoredOrePolyToOrePoly] function converts an Ore polynomial in factored form, that is, a FactoredOrePoly structure, to an Ore polynomial in expanded form, that is, an OrePoly structure.
A completely factored Ore operator is represented by a structure that consists of the keyword FactoredOrePoly and a sequence of lists. Each list consists of two elements and describes a first degree factor. The first element provides the zero degree coefficient and the second element provides the first degree coefficient. For example, in the differential case with a differential operator D, FactoredOrePoly([-1, x], [x, 0], [4, x^2], [0, 1]) describes the operator .
An Ore operator is a structure that consists of the keyword OrePoly with a sequence of coefficients starting with the one of degree zero. The coefficients must be rational functions in x. For example, in the differential case with the differential operator D, OrePoly(2/x, x, x+1, 1) represents the operator .
Examples
See Also
DEtools[de2diffop], DEtools[diffop2de], LinearOperators
Download Help Document