linalg(deprecated)/crossprod - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.
Our website is currently undergoing maintenance, which may result in occasional errors while browsing. We apologize for any inconvenience this may cause and are working swiftly to restore full functionality. Thank you for your patience.

Online Help

All Products    Maple    MapleSim


Home : Support : Online Help : linalg(deprecated)/crossprod

linalg(deprecated)

  

crossprod

  

vector cross product

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

crossprod(u, v)

Parameters

u, v

-

lists or vectors, each with three elements

Description

• 

Important: The linalg package has been deprecated. Use the superseding LinearAlgebra[CrossProduct], instead.

  

- For information on migrating linalg code to the new packages, see examples/LinearAlgebraMigration.

• 

This function computes the vector cross-product of u and v, defined to be vector ([u2v3u3v2, u1v3+u3v1, u1v2u2v1]).

• 

The command with(linalg,crossprod) allows the use of the abbreviated form of this command.

Examples

Important: The linalg package has been deprecated. Use the superseding LinearAlgebra[CrossProduct], instead.

withlinalg:

v1vector1,2,3

v1123

(1)

v2vector2,3,4

v2234

(2)

crossprodv1,v2

−12−1

(3)

See Also

linalg(deprecated)[dotprod]

linalg(deprecated)[innerprod]

LinearAlgebra

LinearAlgebra[CrossProduct]

VectorCalculus[CrossProduct]