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
1 change: 1 addition & 0 deletions LICENSE.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ is licensed under the GNU General Public License Version 2:

External libraries, if used, include their own licenses:

- [AMOS](http://www.netlib.org/slatec/guide)
- [ARPACK](http://www.caam.rice.edu/software/ARPACK/RiceBSD.txt#LICENSE)
- [D3](https://github.com/mbostock/d3/raw/master/LICENSE)
- [DOUBLE-CONVERSION](https://code.google.com/p/double-conversion/)
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ install: release
cp $(BUILD)/bin/*julia* $(PREFIX)/bin
cd $(PREFIX)/bin && ln -s julia-release-$(DEFAULT_REPL) julia
cp -R -L $(BUILD)/lib/julia/* $(PREFIX)/lib/julia
-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
-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
# Web-REPL stuff
-cp $(BUILD)/lib/mod* $(PREFIX)/lib
-cp $(BUILD)/sbin/* $(PREFIX)/sbin
Expand Down
25 changes: 25 additions & 0 deletions base/export.jl
Original file line number Diff line number Diff line change
Expand Up @@ -390,6 +390,7 @@ export
csch,
degrees2radians,
den,
digamma,
div,
eps,
erf,
Expand Down Expand Up @@ -472,6 +473,7 @@ export
prevfloat,
prevpow,
prevpow2,
psigamma,
radians2degrees,
rational,
real,
Expand Down Expand Up @@ -515,6 +517,29 @@ export
isinteger,
typemax,
typemin,

#specfun
airy,
airyai,
airyprime,
airyaiprime,
airybi,
airybiprime,
besselj0,
besselj1,
besselj,
bessely0,
bessely1,
bessely,
hankelh1,
hankelh2,
besseli,
besselk,
besselh,
beta,
lbeta,
eta,
zeta,

# arrays
amap,
Expand Down
Loading