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
difforms[defform] - define a constant, scalar, or form
Calling Sequence
defform(n1 = e1, n2 = e2, . . . )
Parameters
n1, n2, ...
-
names or calls to difforms[d]
e1, e2, ...
Maple expressions
Description
The function defform is used to define the basic variables used in a computation, or to define the exterior derivative of an expression.
The function defform clears the remember tables of all functions in the forms package, as changing the definition of a form can make the remembered results invalid. However, definitions made through defform are not cleared; they are remembered permanently.
The function defform takes an arbitrary number of equations, where each equation is name = expr. There are certain expressions - const, scalar, form, odd, even, -1, and 0 that have special meanings. Except for these, name = expr means name is a form and wdegree(name) = expr.
The expression const or -1 means type(name,const) is true. The name even or odd means type(name,const) is true, but also that parity(name) is 0 or 1, as appropriate. The names even and odd are useful for specifying a form with even or odd, but otherwise unknown wdegree.
The expression scalar or 0 means type(name,scalar) is true. The name form means that type(name,form) is true, but does not give a value to wdegree(name).
The function defform can be used to define the exterior derivative of an expression, and these derivatives are remembered permanently.
The wdegree of an indexed name is by default the wdegree of the non-indexed name. Values of wdegree for a particular index can be explicitly stated.
The command with(difforms,defform) allows the use of the abbreviated form of this command.
Examples
See Also
type/const, type/scalar, wdegree
Download Help Document