Using Linear Algebra with NAG Routines - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


Home : Support : Online Help : Mathematics : Linear Algebra : Examples : Using Linear Algebra with NAG Routines

Linear Algebra Functions with NAG Support

Many LinearAlgebra package functions use NAG routines to carry out computations.  The use of the NAG routines allows computations to be carried out very quickly.

 

This worksheet will guide you through techniques to maximize the power and speed of these routines.

 

restart

withLinearAlgebra:

In order to see when NAG routines are called, set the infolevel for LinearAlgebra to 1.

infolevelLinearAlgebra:=1

infolevelLinearAlgebra:=1

(1)

Determining Whether Hardware Floats are Used

When Maple uses hardware floats, it can execute more quickly than when software floats or symbolics are used.  By understanding how Maple decides which algorithm to use, you can ensure that the most efficient approach is used for your data.

 

Return to Index for Example Worksheets