Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ Reexport = "189a3867-3050-52da-a836-e630ba90ab69"
SpecialFunctions = "276daf66-3868-5448-9aa4-cd146d93841b"
Static = "aedffcd0-7271-4cad-89d0-dc628f76c6d3"
StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"

[weakdeps]
Static = "aedffcd0-7271-4cad-89d0-dc628f76c6d3"
Expand Down
5 changes: 3 additions & 2 deletions src/ApproxFunOrthogonalPolynomials.jl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
module ApproxFunOrthogonalPolynomials
using Base, LinearAlgebra, Reexport, BandedMatrices, BlockBandedMatrices,
BlockArrays, FillArrays, FastTransforms, IntervalSets,
DomainSets, Statistics, SpecialFunctions, FastGaussQuadrature
DomainSets, SpecialFunctions, FastGaussQuadrature

@reexport using ApproxFunBase

Expand Down Expand Up @@ -44,7 +44,8 @@ import ApproxFunBase: Fun, SubSpace, WeightSpace, NoSpace, HeavisideSpace,
assert_integer, supportsinplacetransform, ContinuousSpace, SpecialEvalPtType,
isleftendpoint, isrightendpoint, evaluation_point, boundaryfn, ldiffbc, rdiffbc,
LeftEndPoint, RightEndPoint, normalizedspace, promotedomainspace,
bandmatrices_eigen, SymmetricEigensystem, SkewSymmetricEigensystem
bandmatrices_eigen, SymmetricEigensystem, SkewSymmetricEigensystem,
mean # differs from Statistics.mean after https://github.com/JuliaApproximation/ApproxFunBase.jl/pull/506

import DomainSets: Domain, indomain, UnionDomain, FullSpace, Point,
Interval, ChebyshevInterval, boundary, rightendpoint, leftendpoint,
Expand Down
2 changes: 1 addition & 1 deletion src/Spaces/IntervalSpace.jl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Space(d::IntervalOrSegment) = Chebyshev(d)
Space(d::FullSpace{<:Real}) = Chebyshev(Line())

# TODO: mode these functions to ApproxFunBase
# TODO: move these functions to ApproxFunBase
function Fun(::typeof(identity), d::IntervalOrSegment{<:Number})
Fun(Space(d), [mean(d), complexlength(d)/2])
end
Expand Down