DifferentialGeometry[Tools]
DGmain
Calling Sequence
Parameters
Description
Examples
DGmain:-export(args)
export
-
one of: &mult, &plus, &minus, &tensor, &wedge, Hook, DGzip
args
the arguments appropriate for the DifferentialGeometry command of the same name
The module DGmain contains DifferentialGeometry procedures identical to procedures in the DifferentialGeometry package -- the sole difference being that no argument checking or validation is performed by DGmain procedures. The DGmain procedures can therefore be used in programming situations where the arguments to the procedures &mult, &plus, &minus, &tensor, &wedge, Hook, DGzip are known to be valid.
This command is part of the DifferentialGeometry:-Tools package, and so can be used in the form DGmain:-&mult only after executing the commands with(DifferentialGeometry) and with(Tools) in that order. It can always be used in the long form DifferentialGeometry:-Tools:-DGmain:-&mult. The other valid exports work the same way.
with⁡DifferentialGeometry:with⁡Tools:
exports⁡DGmain
&mult,&algmult,&plus,&minus,&tensor,&wedge,Hook,DGzip
Define a coordinate system [x, y, z, w].
DGsetup⁡x,y,z,w,M
frame name: M
Create two procedures which will determine the time needed to compute D_x + D_y + D_z + D_w:
Test1 := proc(n) local T, i; T := time(); for i to n do D_x &plus D_y &plus D_z &plus D_w; od; time() - T; end:
Test2 := proc(n) local T, i; T := time(); for i to n do DGmain:-`&plus`(DGmain:-`&plus`(DGmain:-`&plus`(D_x, D_y), D_z), D_w); od; time() - T; end:
We see that Test2, which uses DGmain, is faster.
Test1⁡1000
0.416
Test2⁡1000
0.392
See Also
&minus
&mult
&plus
&tensor
&wedge
DGzip
DifferentialGeometry
Hook
Tools
Download Help Document