Maple Professionel
Maple Académique
Maple Edition Étudiant
Maple Personal Edition
Maple Player
Maple Player for iPad
MapleSim Professionel
MapleSim Académique
Maple T.A. - Suite d'examens de classement
Maple T.A. MAA Placement Test Suite
Möbius - Didacticiels de mathématiques en ligne
Machine Design / Industrial Automation
Aéronautique
Ingénierie des véhicules
Robotics
Energie
System Simulation and Analysis
Model development for HIL
Modélisation du procédé pour la conception de systèmes de contrôle
Robotics/Motion Control/Mechatronics
Other Application Areas
Enseignement des mathématiques
Enseignement de l’ingénierie
Enseignement secondaire et supérieur (CPGE, BTS)
Tests et évaluations
Etudiants
Modélisation financière
Recherche opérationnelle
Calcul haute performance
Physique
Webinaires en direct
Webinaires enregistrés
Agenda des évènements
Forum MaplePrimes
Blog Maplesoft
Membres Maplesoft
Maple Ambassador Program
MapleCloud
Livres blancs techniques
Bulletin électronique
Livres Maple
Math Matters
Portail des applications
Galerie de modèles MapleSim
Cas d'Etudes Utilisateur
Exploring Engineering Fundamentals
Concepts d’enseignement avec Maple
Centre d’accueil utilisateur Maplesoft
Centre de ressources pour enseignants
Centre d’assistance aux étudiants
DEtools[convertsys] - convert a system of differential equations to a first-order system
Calling Sequence
convertsys(deqns, inits, vars, ivar, yvec, ypvec)
Parameters
deqns
-
ordinary differential equation, or set or list of equations; can be specified as expressions, which are assumed equal to zero
inits
set or list of initial conditions
vars
function or list or set of functions; dependent variables of the system
ivar
independent variable
yvec
(optional) name to be used for the solution vector in the first-order system
ypvec
(optional) name to be used for the yvec' vector in the first-order system
Description
DEtools[convertsys] converts a system of one or more ordinary differential equations to a system of first-order differential equations. Corresponding initial conditions (if specified) are also converted.
The initial conditions inits must each be of the form function = expression. See examples below. Note: if no initial conditions are available, inits must still be specified as {} or [].
The convertsys command returns a list where
* is the list of equations representing the first-order system in which the vector is specified by and the vector by .
* is the list of equations defining the names in terms of the original functions.
* is the point at which the initial conditions are specified. It is returned as undefined if inits is the empty set.
* is a list representing the vector of initial conditions (possibly empty). Only one of the initial conditions needs to be specified for this list to be nonempty. Note that the ordering of matches that of , not that of inits.
This function is part of the DEtools package, and so it can be used in the form convertsys(..) only after executing the command with(DEtools). However, it can always be accessed through the long form of the command by using DEtools[convertsys](..).
Examples
See Also
DEtools
Download Help Document