Skip to content

Commit

Permalink
fix spacing 2
Browse files Browse the repository at this point in the history
  • Loading branch information
Sungwoo Jeong authored and Sungwoo Jeong committed Apr 18, 2021
1 parent f504169 commit 49094d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Quaternion.jl
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ function _quaternion_representation(A::Matrix{Complex{T}}) where {T}
X = @view A[1:n, 1:n]
Y = @view A[1:n, n+1:2n]

return [Quaternion(X[i,j].re, X[i,j].im, Y[i,j].re, Y[i,j].im) for i in 1:n, j in 1:n]
return [Quaternion(X[i,j].re, X[i,j].im, Y[i,j].re, Y[i,j].im) for i in 1:n, j in 1:n]
end

# A quick way of doing the quaternionic matrix exponential
Expand Down

0 comments on commit 49094d4

Please sign in to comment.