Shouldn’t this work?
julia> pmat = [ 0.3 0.5 0.2; 0.5 0.3 0.2; 0.5 0.4 0.1]
3×3 Array{Float64,2}:
0.3 0.5 0.2
0.5 0.3 0.2
0.5 0.4 0.1
julia> eigen(transpose(pmat))
ERROR: MethodError: no method matching eigen(::Transpose{Float64,Array{Float64,2}})
Closest candidates are:
eigen(::AbstractArray{TA,2}, ::AbstractArray{TB,2}) where {TA, TB} at /home/dabrowsa/lang/julia/julia/usr/share/julia/stdlib/v1.0/LinearAlgebra/src/eigen.jl:382
eigen(::SymTridiagonal{T,V} where V<:AbstractArray{T,1}) where T at /home/dabrowsa/lang/julia/julia/usr/share/julia/stdlib/v1.0/LinearAlgebra/src/tridiag.jl:201
eigen(::SymTridiagonal{T,V} where V<:AbstractArray{T,1}, ::UnitRange) where T at /home/dabrowsa/lang/julia/julia/usr/share/julia/stdlib/v1.0/LinearAlgebra/src/tridiag.jl:205
...
Stacktrace:
[1] top-level scope at none:0