Guest User

Untitled

a guest
May 24th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. julia> h=[1 1im; 1im -1]
  2. 2×2 Array{Complex{Int64},2}:
  3. 1+0im 0+1im
  4. 0+1im -1+0im
  5.  
  6. 2-element Array{Complex{Float64},1}:
  7. -2.22045e-16+0.0im
  8. 0.0+0.0im
  9.  
  10. julia> b[2][:,1]
  11. 2-element Array{Complex{Float64},1}:
  12. -0.0-0.707107im
  13. 0.707107+0.0im
  14.  
  15. julia> b[2][:,2]
  16. 2-element Array{Complex{Float64},1}:
  17. 0.707107+0.0im
  18. 0.0+0.707107im
Add Comment
Please, Sign In to add comment