We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 138b777 commit 06b5cd7Copy full SHA for 06b5cd7
1 file changed
test/interpolations.jl
@@ -5,12 +5,3 @@ f((x1, x2)) = log(x1+x2)
5
A = f.(DimPoints((X(1:.1:10), Y(1:.5:20))))
6
to = rand(X(2:.3:7), Y(2:.3:17))
7
out = DimensionalData.interp(A; to)
8
-
9
-A_x1 = 1:.1:10
10
-A_x2 = 1:.5:20
11
-f(x1, x2) = log(x1+x2)
12
-A = [f(x1,x2) for x1 in A_x1, x2 in A_x2]
13
-itp = interpolate(A, BSpline(Cubic(Line(OnGrid()))))
14
-sitp = scale(itp, A_x1, A_x2)
15
-sitp(5., 10.) # exactly log(5 + 10)
16
-sitp([5.6, 5.2], [7.1, 7.1]) # approximately log(5.6 + 7.1)
0 commit comments