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

Online Help

All Products    Maple    MapleSim


VectorCalculus

  

BasisFormat

  

query or set Vector display style

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

BasisFormat(fmt)

Parameters

fmt

-

(optional) truefalse; specify display style

Description

• 

By default, free Vectors and vector fields created by commands in the VectorCalculus package are displayed using basis format, that is, as a sum of scalar multiples of basis vectors.  Basis vectors are displayed by using the letter "e" subscripted by a coordinate name. If the Vector displayed is a vector field, the basis vectors display with an overbar.

• 

The BasisFormat(fmt) calling sequence determines whether basis format style is used.  If fmt is true, free Vectors and vector fields are displayed using basis format.  If fmt is false, free Vectors and vector fields are displayed using standard Vector notation.

• 

Position Vectors, being Vectors that are always in cartesian coordinates rooted at the origin, are always displayed in standard Vector notation. The BasisFormat(fmt) calling sequence has no effect on the display of a position Vector.

• 

Similarly, rooted Vectors are always displayed in standard Vector notation, independent of the BasisFormat setting.

  

Note: In standard Vector notation, there is no visual distinction between vector fields and the other Vectors.

• 

The BasisFormat command returns the basis format setting in effect when the command was invoked, not the new setting.

Examples

withVectorCalculus:

The default notation is basis format for free Vectors and vector fields.

BasisFormat

true

(1)

SetCoordinatespolarr,θ

polarr,θ

(2)

fv2,3

rvRootedVectorroot=1,π,2,π2

rv2π2

(3)

vfVectorFieldr2,1θ

pvPositionVector1,θ

pvcosθsinθ

(4)

To use standard Vector notation, set BasisFormat to false. This will not affect the display of position Vectors or rooted Vectors.

BasisFormatfalse

true

(5)

fv

rv

2π2

(6)

vf

r21θ

(7)

pv

cosθsinθ

(8)

See Also

coords

VectorCalculus

VectorCalculus[PositionVector]

VectorCalculus[RootedVector]

VectorCalculus[SetCoordinates]

VectorCalculus[Vector]

VectorCalculus[VectorField]