| 
            
              MatrixTransposeT Method (T, T)
             | 
          
        
         
              Gets the transpose of a row vector.
            
 
    Namespace: 
   Accord.Math
    Assembly:
   Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntaxpublic static T[][] Transpose<T>(
	this T[] rowVector,
	out T[][] result
)
<ExtensionAttribute>
Public Shared Function Transpose(Of T) ( 
	rowVector As T(),
	<OutAttribute> ByRef result As T()()
) As T()()
 Request Example
		View SourceParameters
- rowVector
 - Type: T
A row vector. - result
 - Type: T
The matrix where to store the transpose. 
Type Parameters
- T
 
Return Value
Type: 
TThe transpose of the given vector.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type . When you use instance method syntax to call this method, omit the first parameter. For more information, see 
Extension Methods (Visual Basic) or 
Extension Methods (C# Programming Guide).
See Also