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
xand number of columns in matrix y; must be a multiple of 4. - width:
Number of columns in matrix
xand number of rows in matrix y; must be a multiple of 4. - x:
Matrix with
heightrows andwidthcolumns. - y:
Matrix with
widthrows andheightcolumns.
Discussion
The matrix x is transposed into matrix y.