diff --git a/calculations/R2R_Berggren_poles.jl b/calculations/R2R_Berggren_poles.jl index 7dc728f..b6e9bff 100644 --- a/calculations/R2R_Berggren_poles.jl +++ b/calculations/R2R_Berggren_poles.jl @@ -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))