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
Modifiable Options within the gfun Package
Calling Sequence
Parameters(arg1, arg2, ... )
Parameters
arg1, arg2, ...
-
argument(s) of the form name=val or name
Description
The Parameters command is used to set and query variables that affect the computation inside gfun. The variables that can be set and queried are as follows.
maxdegcoeff
maxordereqn
maxdegeqn
mindegcoeff
mindegeqn
minordereqn
optionsgf
If an argument is of the form name=val then this specifies the setting for the named variable.
For each argument of this type, Parameters returns the old value of the argument. This is convenient when you want to change and later restore a value, for example,
oldorder := Parameters(maxordereqn=7); # set new value and save old
...
Parameters(maxordereqn=oldorder); # restore previous value
If an argument is a name then the current value of the named variable is retrieved and returned as the function value.
When Parameters is called with many arguments, it returns an expression sequence containing the values.
The standard set of Parameters variables is:
NAME
VALUES
EXPLANATION
nonnegint
the maximal degree of the coefficients of equations returned by listtodiffeq, listtoalgeq, seriestodiffeq, and seriestoalgeq. The default value is .
the maximal degree for polynomial equations returned by listtoalgeq and seriestoalgeq. The default value is .
the maximal order for differential equations returned by listtodiffeq and seriestodiffeq. The default value is .
the minimal degree of the coefficients of equations returned by listtodiffeq, listtoalgeq, seriestodiffeq, and seriestoalgeq. The default value is .
the minimal degree for polynomial equations returned by listtoalgeq and seriestoalgeq. The default value is .
the minimal order for differential equations returned by listtodiffeq and seriestodiffeq. The default value is .
list
specifies the list of types of generating functions considered by listtoalgeq, listtodiffeq, listtohypergeom, listtolist, listtoratpoly, listtorec, listtoseries, seriestoalgeq, seriestodiffeq, seriestohypergeom, seriestolist, seriestoratpoly, seriestorec, and seriestoseries.
The default is ['ogf', 'egf'] (ordinary and exponential generating functions).
For more information on the generating function types, see gfun/gftypes.
For example, if the listtodiffeq function is used, only those linear differential equations whose order is between minordereqn and maxordereqn and whose coefficients have a degree between mindegcoeff and maxdegcoeff are considered.
Similarly, maxdegeqn and mindegeqn are used to bound the degree of algebraic equations.
Note, the old way of changing parameters by assigning the values to gfun:-<option> is deprecated.
Examples
See Also
gfun, gfun/gftypes
Download Help Document