11module ApproxFun
2- using Base, Reexport,
3- AbstractFFTs, FFTW, FastTransforms,
4- LinearAlgebra, RecipesBase, DomainSets, SpecialFunctions # , Arpack
2+
3+ using AbstractFFTs
4+ using DomainSets
5+ using FastTransforms
6+ using LinearAlgebra
7+ using RecipesBase
8+ using Reexport
9+ using SpecialFunctions
510
611import Calculus
712
@@ -29,10 +34,7 @@ import ApproxFunOrthogonalPolynomials: order
2934
3035using ApproxFunSingularities: LeftIntegral, LeftDerivative, RightDerivative, RightIntegral
3136
32- import BandedMatrices: bandwidths
33-
34- import AbstractFFTs: Plan, fft, ifft
35- import FFTW: plan_fft, plan_ifft, plan_ifft!
37+ import AbstractFFTs: Plan, fft, ifft, plan_fft, plan_ifft, plan_ifft!
3638
3739import Base: convert, getindex, * , + , - , / , ^ , \ , sum, cumsum,
3840 first, last, isempty, zeros, promote_rule,
@@ -44,19 +46,12 @@ import Base: convert, getindex, *, +, -, /, ^, \, sum, cumsum,
4446 asind, acosd, atand, asecd, acscd, acotd, sinh, cosh, tanh, sech, csch,
4547 coth, asinh, acosh, atanh, asech, acsch, acoth, deg2rad, rad2deg
4648
47- import LinearAlgebra: eigvals, dot, adjoint
49+ import LinearAlgebra: adjoint
4850
4951import SpecialFunctions: erf, erfinv, erfc, erfcinv, erfi, gamma, lgamma, digamma, invdigamma,
5052 trigamma, airyai, airybi, airyaiprime, airybiprime, besselj0, besselj1,
5153 bessely0, bessely1, erfcx, dawson
5254
53- # import Arpack: eigs
54-
55-
56- import FastTransforms: ChebyshevTransformPlan, plan_chebyshevtransform,
57- plan_chebyshevtransform!, plan_ichebyshevtransform,
58- plan_ichebyshevtransform!
59-
6055using StaticArrays: SVector
6156
6257"""
0 commit comments