DGmain - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


DifferentialGeometry[Tools]

  

DGmain

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

DGmain:-export(args)

Parameters

export

-

one of: &mult, &plus, &minus, &tensor, &wedge, Hook, DGzip

args

-

the arguments appropriate for the DifferentialGeometry command of the same name

Description

• 

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.

Examples

withDifferentialGeometry:withTools:

exportsDGmain

&mult,&algmult,&plus,&minus,&tensor,&wedge,Hook,DGzip

(1)

 

Define a coordinate system [x, y, z, w].

DGsetupx,y,z,w,M

frame name: M

(2)

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.

Test11000

0.416

(3)

Test21000

0.392

(4)

See Also

&minus

&mult

&plus

&tensor

&wedge

DGzip

DifferentialGeometry

Hook

Tools