aerosandbox.numpy.linalg_top_level ================================== .. py:module:: aerosandbox.numpy.linalg_top_level Functions --------- .. autoapisummary:: aerosandbox.numpy.linalg_top_level.dot aerosandbox.numpy.linalg_top_level.cross aerosandbox.numpy.linalg_top_level.transpose Module Contents --------------- .. py:function:: dot(a, b, manual=False) Dot product of two arrays. See syntax here: https://numpy.org/doc/stable/reference/generated/numpy.dot.html .. py:function:: cross(a, b, axisa=-1, axisb=-1, axisc=-1, axis=None, manual=False) Return the cross product of two (arrays of) vectors. See syntax here: https://numpy.org/doc/stable/reference/generated/numpy.cross.html .. py:function:: transpose(a, axes=None) 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