MathPHP\LinearAlgebra\ColumnVector::transpose PHP Method

transpose() public method

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