From e90ec00607552b2a8966feee3dcb3a7d4f5809d3 Mon Sep 17 00:00:00 2001 From: David AW Barton Date: Tue, 11 Dec 2018 10:25:50 +0000 Subject: [PATCH] Renamed to BarycentricInterpolation --- README.md | 6 +++--- src/{Barycentric.jl => BarycentricInterpolation.jl} | 6 +++--- test/runtests.jl | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) rename src/{Barycentric.jl => BarycentricInterpolation.jl} (98%) diff --git a/README.md b/README.md index e456576..be5397b 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ -# Barycentric +# BarycentricInterpolation ![Lifecycle](https://img.shields.io/badge/lifecycle-maturing-blue.svg) -[![Build Status](https://travis-ci.com/dawbarton/Barycentric.jl.svg?branch=master)](https://travis-ci.com/dawbarton/Barycentric.jl) +[![Build Status](https://travis-ci.com/dawbarton/BarycentricInterpolation.jl.svg?branch=master)](https://travis-ci.com/dawbarton/BarycentricInterpolation.jl) This Julia package implements the Barycentric formula for polynomial interpolation on equispaced points and Chebyshev points of the first and second @@ -60,7 +60,7 @@ derivative of `y`. ## Simple example ```julia -using Barycentric +using BarycentricInterpolation p = Chebyshev2{20}() # create a Chebyshev type 2 polynomial of order 20 x = nodes(p) # get the nodes diff --git a/src/Barycentric.jl b/src/BarycentricInterpolation.jl similarity index 98% rename from src/Barycentric.jl rename to src/BarycentricInterpolation.jl index 5503cbb..dfb46f2 100644 --- a/src/Barycentric.jl +++ b/src/BarycentricInterpolation.jl @@ -1,6 +1,6 @@ """ -Barycentric -=========== +BarycentricInterpolation +======================== This package implements the Barycentric formula for polynomial interpolation on equispaced points and Chebyshev points of the first and second kind. The @@ -12,7 +12,7 @@ Other packages that may be of interest are FastGaussQuadrature and ApproxFun. Written by David A.W. Barton (david.barton@bristol.ac.uk) 2016-2018 and licensed under the MIT license """ -module Barycentric +module BarycentricInterpolation export Chebyshev1, Chebyshev2, Equispaced, ArbitraryPolynomial, weights, nodes, interpolate, interpolation_matrix, differentiation_matrix, degree diff --git a/test/runtests.jl b/test/runtests.jl index f5fa880..f0f5e0f 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -1,4 +1,4 @@ -using Barycentric +using BarycentricInterpolation using LinearAlgebra using Test