Skip to content

Commit ac24a43

Browse files
committed
Adding Coverage Testing
1 parent 4aac235 commit ac24a43

File tree

2 files changed

+9
-11
lines changed

2 files changed

+9
-11
lines changed

.travis.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,15 @@
11
# Documentation: http://docs.travis-ci.com/user/languages/julia/
2-
32
language: julia
43

54
os:
6-
75
- linux
8-
96
- osx
107

118
julia:
12-
139
- 1.0
1410

1511
notifications:
16-
1712
email: false
13+
14+
after_success:
15+
- julia -e 'if VERSION >= v"0.7.0-" using Pkg end; cd(Pkg.dir("MultivariateFunctions")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())';

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
# MultivariateFunctions.jl
22

3-
[![Build Status](https://travis-ci.com/s-baumann/MultivariateFunctions.jl.svg?branch=master)](https://travis-ci.org/s-baumann/MultivariateFunctions.jl)
3+
| Build | Coverage |
4+
|-------|----------|
5+
| [![Build Status](https://travis-ci.com/s-baumann/MultivariateFunctions.jl.svg?branch=master)](https://travis-ci.org/s-baumann/MultivariateFunctions.jl) | [![Coverage Status](https://coveralls.io/repos/github/s-baumann/MultivariateFunctions.jl/badge.svg?branch=master)](https://coveralls.io/github/s-baumann/MultivariateFunctions.jl?branch=master)
46

57
This implements single algebra and evaluation on Multivariate functions.
68
There are a few ways in which it can be used.
7-
* This can be used for approximation functions. It can currently implement OLS functions, chebyshev polynomials, the schumaker shape preserving spline and basic interpolation schemes. It could be extended to implement other approximation schemes.
8-
* As in the [StochasticIntegrals.jl](https://github.com/s-baumann/StochasticIntegrals.jl) package this package can be used to define
9-
functions that will be the integrands in stochastic integrals. This has the benefit
10-
that the means, variances & covariances implied by these stochastic integrals can be found analytically.
11-
* All basic algebra and calculus on a multivariateFunction can be done analytically.
9+
* This can be used for approximation functions. It can currently implement OLS functions, chebyshev polynomials, the schumaker shape preserving spline and basic interpolation schemes. It can also create Multivariate Adaptive Regression (MARS) Splines. It could be extended to implement other approximation schemes.
10+
* As in the [StochasticIntegrals.jl](https://github.com/s-baumann/StochasticIntegrals.jl) package this package can be used to define functions that will be the integrands in stochastic integrals. This has the benefit that the means, variances & covariances implied by these stochastic integrals can be found analytically.
11+
* All basic algebra and calculus on a MultivariateFunction can be done analytically.
1212
* The Newton's method is implemented so that roots and optima can be found using analytical Jacobians and Hessians.
1313

1414
## Structs

0 commit comments

Comments
 (0)