Add new point to improve extrapolation

This commit is contained in:
Nuwan Yapa 2024-07-01 12:56:50 -04:00
parent f7eccbf89c
commit be6ada203e
1 changed files with 5 additions and 4 deletions

View File

@ -9,9 +9,13 @@ println("No of threads = ", Threads.nthreads())
atol = 10^-5
maxevals = 10^5
training_c = [1.1, 0.9, 0.7, 0.5]
extrapolating_c = 0.0 : 0.2 : 1.2
training_ref = reverse([1.4750633616275919 - 0.0003021770706749637im
1.9567078295375822 - 0.0007646829108872369im
2.4351117758403076 - 0.001281037843108658im])
2.4351117758403076 - 0.001281037843108658im
2.85])
exact_ref = reverse([4.076662025307587-0.012709842443350328im,
3.613318119833891-0.007335804709990623im,
@ -85,9 +89,6 @@ display(test_evals)
Es = n1s = l1s = n2s = l2s = mask1 = mask2 = T1 = T2 = V1_cache = V_relative_cache = V1 = V_relative = U = V2 = nothing
GC.gc()
training_c = [1.1, 0.9, 0.7]
extrapolating_c = 0.0 : 0.2 : 1.2
exact = ComplexF64[]
training = ComplexF64[]
extrapolated = ComplexF64[]