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
5 changes: 3 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ before_install:
- source ~/travis-perl-helpers/init
- build-perl
- perl -V
- cpanm -n Devel::Cover::Report::Coveralls
- cpanm -qn Test::Requires::Git
- cpanm -qn Devel::Cover::Report::Codecov
- cpanm --installdeps -n .
script:
perl Makefile.PL && make test && cover -test -report coveralls
perl Makefile.PL && make test && cover -test -report codecov
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
**Math-Function-Interpolator**

[![codecov](https://codecov.io/gh/binary-com/perl-Math-Function-Interpolator/branch/master/graph/badge.svg)](https://codecov.io/gh/binary-com/perl-Math-Function-Interpolator)
[![Build Status](https://travis-ci.org/binary-com/perl-Math-Function-Interpolator.svg?branch=master)](https://travis-ci.org/binary-com/perl-Math-Function-Interpolator)
[![Gitter chat](https://badges.gitter.im/binary-com/perl-Math-Function-Interpolator.png)](https://gitter.im/binary-com/perl-Math-Function-Interpolator)

Math::Function::Interpolator helps you to do the interpolation calculation with linear, quadratic and cubic methods.

1. Linear method (needs more than 1 data point)
1. Quadratic method (needs more than 2 data points)
1. Cubic method, it's a Cubic Spline method (needs more than 4 data points)


[![Build Status](https://travis-ci.org/binary-com/perl-Math-Function-Interpolator.svg?branch=master)](https://travis-ci.org/binary-com/perl-Math-Function-Interpolator)
[![Coverage Status](https://coveralls.io/repos/binary-com/perl-Math-Function-Interpolator/badge.png?branch=master)](https://coveralls.io/r/binary-com/perl-Math-Function-Interpolator?branch=master)
[![Gitter chat](https://badges.gitter.im/binary-com/perl-Math-Function-Interpolator.png)](https://gitter.im/binary-com/perl-Math-Function-Interpolator)

SYNOPSIS

use Math::Function::Interpolator;
Expand Down