Skip to content

Commit 27964f6

Browse files
committed
'order' is now a tuple, not a 1d array
1 parent 9b43654 commit 27964f6

18 files changed

+1435
-1436
lines changed

Project.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "ChebyshevApprox"
22
uuid = "17a596ad-87cd-578c-9b6d-01108c31dc04"
33
authors = ["Richard Dennis <richard.dennis@glasgow.ac.uk>"]
4-
version = "0.1.15"
4+
version = "0.2.0"
55

66
[deps]
77
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"

README.md

+15-3
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,19 @@ w = chebyshev_weights_extended_threaded(y,nodes,order,domain)
316316
w = chebyshev_weights_vertesi_threaded(y,nodes,order,domain)
317317
```
318318

319-
What if I want to use my own set of nodes?
320-
------------------------------------------
319+
Related packages
320+
----------------
321321

322-
You can. The routines used for Chebyshev-extended-nodes and Vertesi-nodes are general, so applying the functions for these node-cases to your own set of nodes should work.
322+
If you are looking to approximate a function of one variable, then there is:
323+
324+
- ApproxFun.jl
325+
326+
For multivariate functions, there is:
327+
328+
- SmolyakApprox.jl
329+
- HyperbolicCrossApprox.jl
330+
- PiecewiseLinearApprox.jl
331+
332+
Finally, if you are approximating complex-valued multivariate functions, then a package insipired by ChebyshevApprox.jl and offering similar functionality is:
333+
334+
- FastChebInterp.jl

0 commit comments

Comments
 (0)