GeneralMatrix.SolveTranspose Method

DotNetMatrix

An NDoc Documented Class Library

GeneralMatrix.SolveTranspose Method 

Solve X*A = B, which is also A'*X' = B'

[Visual Basic]Overridable Public Function SolveTranspose( _
   ByVal B As GeneralMatrix _
) As GeneralMatrix
[C#]
public virtual GeneralMatrix SolveTranspose(
   GeneralMatrix B
);

Parameters

B
right hand side

Return Value

solution if A is square, least squares solution otherwise.

See Also

GeneralMatrix Class | DotNetMatrix Namespace