Skip to content

Commit

Permalink
Conversion to float64
Browse files Browse the repository at this point in the history
  • Loading branch information
mattsignorelli committed Dec 4, 2023
1 parent ff3e055 commit 3945975
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Tao.jl
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ function pol_scan(lat, agamma0)

# Calculate important quantities and store in metadata
data = readdlm("$(path)/spin.dat", ';')[:,4]
data = permutedims(reshape(data, (18,Int(length(data)/18))))
data = Float64.(permutedims(reshape(data, (18,Int(length(data)/18)))))
agamma0 = data[:,1]
spin_tune = data[:,2]
P_st = data[:,3]
Expand Down

0 comments on commit 3945975

Please sign in to comment.