aerosandbox.numpy.linalg_top_level#

Module Contents#

Functions#

dot(a, b[, manual])

Dot product of two arrays.

cross(a, b[, axisa, axisb, axisc, axis, manual])

Return the cross product of two (arrays of) vectors.

transpose(a[, axes])

Reverse or permute the axes of an array; returns the modified array.

aerosandbox.numpy.linalg_top_level.dot(a, b, manual=False)[source]#

Dot product of two arrays.

See syntax here: https://numpy.org/doc/stable/reference/generated/numpy.dot.html

aerosandbox.numpy.linalg_top_level.cross(a, b, axisa=-1, axisb=-1, axisc=-1, axis=None, manual=False)[source]#

Return the cross product of two (arrays of) vectors.

See syntax here: https://numpy.org/doc/stable/reference/generated/numpy.cross.html

aerosandbox.numpy.linalg_top_level.transpose(a, axes=None)[source]#

Reverse or permute the axes of an array; returns the modified array.

For an array a with two axes, transpose(a) gives the matrix transpose.

See syntax here: https://numpy.org/doc/stable/reference/generated/numpy.transpose.html