FundamentalSU3.jl typos fixed

parent 90345081
...@@ -24,14 +24,14 @@ dag(a::SU3fund{T}) where T <: AbstractFloat = SU3fund{T}(conj(a. ...@@ -24,14 +24,14 @@ dag(a::SU3fund{T}) where T <: AbstractFloat = SU3fund{T}(conj(a.
Returns the norm of a fundamental element. Same result as dot(a,a). Returns the norm of a fundamental element. Same result as dot(a,a).
""" """
norm(a::SU3fund{T}) where T <: AbstractFloat = sqrt((abs2(a.t1) + abs2(a.t2) + abs2(a.t1))) norm(a::SU3fund{T}) where T <: AbstractFloat = sqrt((abs2(a.t1) + abs2(a.t2) + abs2(a.t3)))
""" """
norm(a::SU3fund{T}) norm(a::SU3fund{T})
Returns the norm of a fundamental element. Same result as sqrt(dot(a,a)). Returns the norm of a fundamental element. Same result as sqrt(dot(a,a)).
""" """
norm2(a::SU3fund{T}) where T <: AbstractFloat = (abs2(a.t1) + abs2(a.t2) + abs2(a.t1)) norm2(a::SU3fund{T}) where T <: AbstractFloat = (abs2(a.t1) + abs2(a.t2) + abs2(a.t3))
""" """
dot(a::SU3fund{T},b::SU3fund{T}) dot(a::SU3fund{T},b::SU3fund{T})
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment