Contents

vSgetmo(_:_:_:_:)

Transposes a matrix out of place.

Declaration

func vSgetmo(_ height: Int32, _ width: Int32, _ x: UnsafePointer<vFloat>, _ y: UnsafeMutablePointer<vFloat>)

Parameters

  • height:

    Number of rows in matrix x and number of columns in matrix y; must be a multiple of 4.

  • width:

    Number of columns in matrix x and number of rows in matrix y; must be a multiple of 4.

  • x:

    Matrix with height rows and width columns.

  • y:

    Matrix with width rows and height columns.

Discussion

The matrix x is transposed into matrix y.

See Also

Matrix Operations (from vectorOps.h)