Skip to content

Commit c4fe43e

Browse files
committed
Merge pull request #1466 from JuliaLang/vs/amos
RFC: Special functions and amos
2 parents d086403 + bc96c7b commit c4fe43e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

80 files changed

+745
-9068
lines changed

LICENSE.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ is licensed under the GNU General Public License Version 2:
4545
4646
External libraries, if used, include their own licenses:
4747

48+
- [AMOS](http://www.netlib.org/slatec/guide)
4849
- [ARPACK](http://www.caam.rice.edu/software/ARPACK/RiceBSD.txt#LICENSE)
4950
- [D3](https://github.com/mbostock/d3/raw/master/LICENSE)
5051
- [DOUBLE-CONVERSION](https://code.google.com/p/double-conversion/)

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ install: release
4444
cp $(BUILD)/bin/*julia* $(PREFIX)/bin
4545
cd $(PREFIX)/bin && ln -s julia-release-$(DEFAULT_REPL) julia
4646
cp -R -L $(BUILD)/lib/julia/* $(PREFIX)/lib/julia
47-
-cp $(BUILD)/lib/lib{Rmath,amd,amos,arpack,cholmod,colamd,openlibm,fftw3,fftw3f,fftw3_threads,fftw3f_threads,glpk,glpk_wrapper,gmp,gmp_wrapper,grisu,history,julia-release,$(OPENBLASNAME),openlibm,pcre,random,readline,suitesparse_wrapper,tk_wrapper,umfpack,z}.$(SHLIB_EXT) $(PREFIX)/lib
47+
-cp $(BUILD)/lib/lib{Rmath,amd,arpack,cholmod,colamd,openlibm,fftw3,fftw3f,fftw3_threads,fftw3f_threads,glpk,glpk_wrapper,gmp,gmp_wrapper,grisu,history,julia-release,$(OPENBLASNAME),openlibm,pcre,random,readline,suitesparse_wrapper,tk_wrapper,umfpack,z}.$(SHLIB_EXT) $(PREFIX)/lib
4848
# Web-REPL stuff
4949
-cp $(BUILD)/lib/mod* $(PREFIX)/lib
5050
-cp $(BUILD)/sbin/* $(PREFIX)/sbin

base/export.jl

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -390,6 +390,7 @@ export
390390
csch,
391391
degrees2radians,
392392
den,
393+
digamma,
393394
div,
394395
eps,
395396
erf,
@@ -472,6 +473,7 @@ export
472473
prevfloat,
473474
prevpow,
474475
prevpow2,
476+
psigamma,
475477
radians2degrees,
476478
rational,
477479
real,
@@ -515,6 +517,29 @@ export
515517
isinteger,
516518
typemax,
517519
typemin,
520+
521+
#specfun
522+
airy,
523+
airyai,
524+
airyprime,
525+
airyaiprime,
526+
airybi,
527+
airybiprime,
528+
besselj0,
529+
besselj1,
530+
besselj,
531+
bessely0,
532+
bessely1,
533+
bessely,
534+
hankelh1,
535+
hankelh2,
536+
besseli,
537+
besselk,
538+
besselh,
539+
beta,
540+
lbeta,
541+
eta,
542+
zeta,
518543

519544
# arrays
520545
amap,

0 commit comments

Comments
 (0)