Tweak parameters

This commit is contained in:
Nuwan Yapa 2024-08-22 17:23:37 -04:00
parent 458030f73f
commit 8358ea5d5f
1 changed files with 2 additions and 2 deletions

View File

@ -16,7 +16,7 @@ N_berg = sqrt.(diag(transpose(berg_basis .* w) * berg_basis))
berg_basis = berg_basis ./ transpose(N_berg)
berg_basis_w = berg_basis .* w
training_points = range(0.78, 0.62, 5) # original: range(1.35, 0.9, 5)
training_points = range(0.79, 0.66, 4) # original: range(1.35, 0.9, 5)
training_E = Vector{ComplexF64}(undef, length(training_points))
EC_basis = Matrix{ComplexF64}(undef, length(p), length(training_points))
@ -33,7 +33,7 @@ end
N_EC = transpose(EC_basis) * EC_basis
extrapolate_points = range(0.58, 0.40, 5) # original: range(0.75, 0.40, 8)
extrapolate_points = range(0.62, 0.40, 6) # original: range(0.75, 0.40, 8)
exact_E = Vector{ComplexF64}(undef, length(extrapolate_points))
extrapolate_E = Vector{ComplexF64}(undef, length(extrapolate_points))