forked from JuliaMath/Interpolations.jl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathio.jl
79 lines (73 loc) · 2.09 KB
/
io.jl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
function Base.showarg(io::IO, A::BSplineInterpolation{T,N,TW,ST}, toplevel) where {T,N,TW,ST}
print(io, "interpolate(")
Base.showarg(io, A.coefs, false)
print(io, ", ")
show(io, itpflag(A))
if toplevel
print(io, ") with element type ",T)
else
print(io, ')')
end
end
function Base.showarg(io::IO, A::GriddedInterpolation{T,N,TC,ST,K}, toplevel) where {T,N,TC,ST,K}
print(io, "interpolate(")
_showknots(io, A.knots)
print(io, ", ")
Base.showarg(io, A.coefs, false)
print(io, ", ")
show(io, itpflag(A))
if toplevel
print(io, ") with element type ",T)
else
print(io, ')')
end
end
_showknots(io, A) = Base.showarg(io, A, false)
function _showknots(io, tup::NTuple{N,Any}) where N
print(io, '(')
for (i, A) in enumerate(tup)
Base.showarg(io, A, false)
i < N && print(io, ',')
end
N == 1 && print(io, ',')
print(io, ')')
end
function Base.showarg(io::IO, A::ScaledInterpolation{T}, toplevel) where {T}
print(io, "scale(")
Base.showarg(io, A.itp, false)
print(io, ", ", A.ranges, ')')
if toplevel
print(io, " with element type ",T)
end
end
function Base.showarg(io::IO, A::MonotonicInterpolation{T, TCoeffs, Tel, Type, K}, toplevel) where {T, TCoeffs, Tel, Type, K}
print(io, "interpolate(")
_showknots(io, A.knots)
print(io, ", ")
Base.showarg(io, A.A, false)
print(io, ", ")
show(io, A.it)
if toplevel
print(io, ") with element type ",T)
else
print(io, ')')
end
end
function Base.showarg(io::IO, A::Extrapolation{T,N,TI,IT,ET}, toplevel) where {T,N,TI,IT,ET}
print(io, "extrapolate(")
Base.showarg(io, A.itp, false)
print(io, ", ")
show(io, etpflag(A))
print(io, ')')
if toplevel
print(io, " with element type ",T)
end
end
function Base.showarg(io::IO, A::FilledExtrapolation{T,N,TI,IT}, toplevel) where {T,N,TI,IT}
print(io, "extrapolate(")
Base.showarg(io, A.itp, false)
print(io, ", ", A.fillvalue, ')')
if toplevel
print(io, " with element type ",T)
end
end