We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6d309d9 commit ea717d6Copy full SHA for ea717d6
src/FastChebInterp.jl
@@ -41,7 +41,7 @@ struct ChebPoly{N,T,Td<:Real}
41
end
42
43
function Base.show(io::IO, c::ChebPoly)
44
- print(io, "Chebyshev order ", map(i->i-1,size(c.coefs)), " interpolator on ",
+ print(io, "Chebyshev order ", map(i->i-1,size(c.coefs)), " polynomial on ",
45
'[', c.lb[1], ',', c.ub[1], ']')
46
for i = 2:length(c.lb)
47
print(io, " × [", c.lb[i], ',', c.ub[i], ']')
0 commit comments