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
gfun[listtoseries] - convert a list into a series
gfun[seriestolist] - convert a series into a list
gfun[listtolist] - convert a list into a list
gfun[seriestoseries] - convert a series into a series
Calling Sequence
listtoseries(l, x, gf)
listtolist(l, gf)
seriestolist(s, gf)
seriestoseries(s, gf)
Parameters
l
-
list
x
name; unknown variable
gf
(optional) generating function type, e.g., 'egf' or 'ogf'
s
series
Description
The listtoseries(l, x, gf) command accepts a list as input and returns a series.
By default, the listtoseries function creates a power series whose coefficients are exactly the elements of the list specified.
The listtolist(l, gf) command accepts a list as input and returns a list.
By default, the listtolist function returns the input list unchanged.
The seriestolist(s, gf) command accepts a series as input and returns a list.
By default, the seriestolist command returns a list whose entries are exactly the coefficients of the series specified.
The seriestoseries(s, gf) command accepts a series as input and returns a series.
By default, the seriestoseries function returns the input series unchanged.
Lists are viewed as lists of coefficients of power series and reciprocally series are viewed as generating series of lists of coefficients.
If gf is specified, it is considered to be a type of generating function. The coefficients of the output are those of the corresponding generating function of the input.
E.g., listtoseries(l, x, 'egf') resp. listtolist(l, 'egf') returns the series resp. the list whose coefficients are for . Similarly, if s is a series with coefficients for , then seriestoseries(s, 'egf') resp. seriestolist(s, 'egf') returns the series resp. the list whose coefficients are .
Examples
The LambertW function is the inverse of . The following is a simple way to compute Taylor expansions of such functions.
You can then extract the list of coefficients.
Multiplying the nth coefficient by recovers the number of planar trees of size n.
See Also
gfun, gfun/gftypes, series, solve
Download Help Document