MathPHP\LinearAlgebra\RowVector::transpose PHP Method

transpose() public method

[x₁] [x₁ x₂ ⋯ xn]ᵀ = [x₂] [⋮ ] [xn]
public transpose ( ) : ColumnVector
return ColumnVector
    public function transpose() : ColumnVector
    {
        return new ColumnVector($this->getRow(0));
    }