Skip to content

Commit

Permalink
Renamed to BarycentricInterpolation
Browse files Browse the repository at this point in the history
  • Loading branch information
dawbarton committed Dec 11, 2018
1 parent d3e7898 commit e90ec00
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions src/Barycentric.jl → src/BarycentricInterpolation.jl
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -12,7 +12,7 @@ Other packages that may be of interest are FastGaussQuadrature and ApproxFun.
Written by David A.W. Barton ([email protected]) 2016-2018 and licensed
under the MIT license <https://opensource.org/licenses/MIT>
"""
module Barycentric
module BarycentricInterpolation

export Chebyshev1, Chebyshev2, Equispaced, ArbitraryPolynomial,
weights, nodes, interpolate, interpolation_matrix, differentiation_matrix, degree
Expand Down
2 changes: 1 addition & 1 deletion test/runtests.jl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using Barycentric
using BarycentricInterpolation
using LinearAlgebra
using Test

Expand Down

0 comments on commit e90ec00

Please sign in to comment.