GetComponents
get components of a VectorField or OneForm object
Calling Sequence
Parameters
Description
Examples
Compatibility
GetComponents( obj)
GetComponents( obj, output = opt)
obj
-
a VectorField or a OneForm object
opt
a string : either "expression" or "table"
The GetComponents method returns a list of components of a VectorField or OneForm object.
The components can also be returned as a table, by specifying output = "table". See example below.
This method is associated with the VectorField and OneForm objects. For more detail, see Overview of the VectorField object, Overview of the OneForm object.
with⁡LieAlgebrasOfVectorFields:
X≔VectorField⁡components=ξ,η,space=x,y
X≔ξ⁢ⅆⅆx+η⁢ⅆⅆy
GetComponents⁡X
ξ,η
ω≔OneForm⁡components=1,x2,y2,space=x,y,z
ω≔x2⁢dy+y2⁢dz+dx
T≔GetComponents⁡ω,output=table
T≔table⁡y=x2,x=1,z=y2
The entries of this table T are the components of the OneForm object, the indices are the corresponding space variables.
Tx,Ty,Tz
1,x2,y2
The GetComponents command was introduced in Maple 2020.
For more information on Maple 2020 changes, see Updates in Maple 2020.
See Also
VectorField (Object overview)
OneForm (Object overview)
LieAlgebrasOfVectorFields[VectorField]
LieAlgebrasOfVectorFields[OneForm]
GetSpace
Download Help Document