Maple Professional
Maple Academic
Maple Student Edition
Maple Personal Edition
Maple Player
Maple Player for iPad
MapleSim Professional
MapleSim Academic
Maple T.A. - Testing & Assessment
Maple T.A. MAA Placement Test Suite
Möbius - Online Courseware
Machine Design / Industrial Automation
Aerospace
Vehicle Engineering
Robotics
Power Industries
System Simulation and Analysis
Model development for HIL
Plant Modeling for Control Design
Robotics/Motion Control/Mechatronics
Other Application Areas
Mathematics Education
Engineering Education
High Schools & Two-Year Colleges
Testing & Assessment
Students
Financial Modeling
Operations Research
High Performance Computing
Physics
Live Webinars
Recorded Webinars
Upcoming Events
MaplePrimes
Maplesoft Blog
Maplesoft Membership
Maple Ambassador Program
MapleCloud
Technical Whitepapers
E-Mail Newsletters
Maple Books
Math Matters
Application Center
MapleSim Model Gallery
User Case Studies
Exploring Engineering Fundamentals
Teaching Concepts with Maple
Maplesoft Welcome Center
Teacher Resource Center
Student Help Center
DifferentialGeometry:-Tools[DGmain]
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
Define a coordinate system [x, y, z, w].
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.
See Also
DifferentialGeometry, Tools, &minus, &mult, &plus, &tensor, &wedge, DGzip, Hook
Download Help Document