Copy
clone a LHPDE or a IDBasis object to have different dependent variable names
Calling Sequence
Parameters
Description
Examples
Compatibility
Copy( obj, vars)
Copy( obj)
obj
-
a LHPDE or IDBasis object
vars
a list of names as new dependent variable names
The Copy method clones a LHPDE or a IDBasis object to have new dependent variable names. It returns a new LHPDE (respectively IDBasis) object.
The new dependent variable names vars will replace the ones from the object. The number of entries in vars must be the same as the number of dependent variables from obj (see GetDependents).
In the second calling sequence, the method clones the object obj without changing the dependent variable names.
This method is associated with the LHPDE and IDBasis object. For more detail, see Overview of the LHPDE object and Overview of the IDBasis object.
with⁡LieAlgebrasOfVectorFields:
S≔LHPDE⁡diff⁡ξ⁡y,y,y=0,diff⁡η⁡x,x=−diff⁡ξ⁡y,y,indep=x,y,dep=ξ,η
S≔ⅆ2ⅆy2ξ⁡y=0,ⅆⅆxη⁡x=−ⅆⅆyξ⁡y,indep=x,y,dep=ξ⁡y,η⁡x
Copy⁡S,α,β
ⅆ2ⅆy2α⁡y=0,ⅆⅆxβ⁡x=−ⅆⅆyα⁡y,indep=x,y,dep=α⁡y,β⁡x
ParametricDerivatives⁡S
ξ⁡y,ⅆⅆyξ⁡y,η⁡x
B≔IDBasis⁡S,1,0,−1,0,1,1,0,1,0
B≔ξ⁡y,ⅆⅆyξ⁡y+η⁡x,−ξ⁡y+ⅆⅆyξ⁡y
Copy⁡B,α,β
α⁡y,ⅆⅆyα⁡y+β⁡x,−α⁡y+ⅆⅆyα⁡y
The Copy command was introduced in Maple 2020.
For more information on Maple 2020 changes, see Updates in Maple 2020.
See Also
LHPDE (Object overview)
LieAlgebrasOfVectorFields[LHPDE]
IDBasis (Object overview)
LieAlgebrasOfVectorFields[IDBasis]
ParametricDerivatives
Download Help Document