Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
antik
gsll
Commits
24eecac1
Commit
24eecac1
authored
Dec 27, 2014
by
Liam M. Healy
Browse files
Use Antik named readtable
parent
cc83456a
Changes
13
Hide whitespace changes
Inline
Side-by-side
hankel.lisp
View file @
24eecac1
;; Discrete Hankel Transforms.
;; Liam Healy, Sat Dec 8 2007 - 16:50
;; Time-stamp: <201
2-01-13 12:01:11
EST hankel.lisp>
;; Time-stamp: <201
4-12-26 13:18:38
EST hankel.lisp>
;;
;; Copyright 2007, 2008, 2009, 2011 Liam M. Healy
;; Copyright 2007, 2008, 2009, 2011
, 2012, 2014
Liam M. Healy
;; Distributed under the terms of the GNU General Public License
;;
;; This program is free software: you can redistribute it and/or modify
...
...
@@ -20,6 +20,7 @@
;; $Id$
(
in-package
:gsl
)
(
named-readtables:in-readtable
:antik
)
;;; /usr/include/gsl/gsl_dht.h
...
...
linear-algebra/exponential.lisp
View file @
24eecac1
;; Exponential of a matrix
;; Liam Healy 2008-08-10 17:25:35EDT exponential.lisp
;; Time-stamp: <201
0-07-07 14:25:00ED
T exponential.lisp>
;; Time-stamp: <201
4-12-26 13:18:34ES
T exponential.lisp>
;;
;; Copyright 2008, 2009 Liam M. Healy
;; Copyright 2008, 2009
, 2010, 2014
Liam M. Healy
;; Distributed under the terms of the GNU General Public License
;;
;; This program is free software: you can redistribute it and/or modify
...
...
@@ -19,6 +19,7 @@
;; along with this program. If not, see <http://www.gnu.org/licenses/>.
(
in-package
:gsl
)
(
named-readtables:in-readtable
:antik
)
;;; No documentation
(
defmfun
matrix-exponential
(
matrix
exponential
&optional
(
mode
:double
))
...
...
polynomial.lisp
View file @
24eecac1
;; Polynomials
;; Liam Healy, Tue Mar 21 2006 - 18:33
;; Time-stamp: <201
2-01-13 12:01:12
EST polynomial.lisp>
;; Time-stamp: <201
4-12-26 13:18:34
EST polynomial.lisp>
;;
;; Copyright 2009, 2011 Liam M. Healy
;; Copyright 2009, 2011
, 2012, 2014
Liam M. Healy
;; Distributed under the terms of the GNU General Public License
;;
;; This program is free software: you can redistribute it and/or modify
...
...
@@ -19,6 +19,7 @@
;; along with this program. If not, see <http://www.gnu.org/licenses/>.
(
in-package
:gsl
)
(
named-readtables:in-readtable
:antik
)
;;; /usr/include/gsl/gsl_poly.h
...
...
random/dirichlet.lisp
View file @
24eecac1
;; Dirichlet distribution
;; Liam Healy, Sun Oct 29 2006
;; Time-stamp: <201
2-01-13 12:01:22
EST dirichlet.lisp>
;; Time-stamp: <201
4-12-26 13:18:36
EST dirichlet.lisp>
;;
;; Copyright 2006, 2007, 2008, 2009, 2011 Liam M. Healy
;; Copyright 2006, 2007, 2008, 2009, 2011
, 2012, 2014
Liam M. Healy
;; Distributed under the terms of the GNU General Public License
;;
;; This program is free software: you can redistribute it and/or modify
...
...
@@ -19,6 +19,7 @@
;; along with this program. If not, see <http://www.gnu.org/licenses/>.
(
in-package
:gsl
)
(
named-readtables:in-readtable
:antik
)
;;; /usr/include/gsl/gsl_randist.h
...
...
random/discrete.lisp
View file @
24eecac1
;; Discrete random variables
;; Liam Healy, Sat Nov 11 2006 - 21:51
;; Time-stamp: <201
2-01-13 12:01:21
EST discrete.lisp>
;; Time-stamp: <201
4-12-26 13:18:36
EST discrete.lisp>
;;
;; Copyright 2006, 2007, 2008, 2009, 2011 Liam M. Healy
;; Copyright 2006, 2007, 2008, 2009, 2011
, 2012, 2014
Liam M. Healy
;; Distributed under the terms of the GNU General Public License
;;
;; This program is free software: you can redistribute it and/or modify
...
...
@@ -19,6 +19,7 @@
;; along with this program. If not, see <http://www.gnu.org/licenses/>.
(
in-package
:gsl
)
(
named-readtables:in-readtable
:antik
)
;;; /usr/include/gsl/gsl_randist.h
...
...
random/multinomial.lisp
View file @
24eecac1
;; Multinomial distribution
;; Liam Healy, Sat Nov 25 2006 - 16:00
;; Time-stamp: <201
2-01-13 12:01:21
EST multinomial.lisp>
;; Time-stamp: <201
4-12-26 13:24:44
EST multinomial.lisp>
;;
;; Copyright 2006, 2007, 2008, 2009, 2011 Liam M. Healy
;; Copyright 2006, 2007, 2008, 2009, 2011
, 2012, 2014
Liam M. Healy
;; Distributed under the terms of the GNU General Public License
;;
;; This program is free software: you can redistribute it and/or modify
...
...
@@ -19,6 +19,7 @@
;; along with this program. If not, see <http://www.gnu.org/licenses/>.
(
in-package
:gsl
)
(
named-readtables:in-readtable
:antik
)
;;; /usr/include/gsl/gsl_randist.h
...
...
random/shuffling-sampling.lisp
View file @
24eecac1
;; Shuffling and sampling
;; Liam Healy, Sat Dec 2 2006 - 18:40
;; Time-stamp: <201
2-01-13 12:01:20
EST shuffling-sampling.lisp>
;; Time-stamp: <201
4-12-26 13:24:44
EST shuffling-sampling.lisp>
;;
;; Copyright 2006, 2007, 2008, 2009, 2011 Liam M. Healy
;; Copyright 2006, 2007, 2008, 2009, 2011
, 2012, 2014
Liam M. Healy
;; Distributed under the terms of the GNU General Public License
;;
;; This program is free software: you can redistribute it and/or modify
...
...
@@ -19,6 +19,7 @@
;; along with this program. If not, see <http://www.gnu.org/licenses/>.
(
in-package
:gsl
)
(
named-readtables:in-readtable
:antik
)
;;; These are currently defined only for vectors.
...
...
special-functions/bessel.lisp
View file @
24eecac1
;; Bessel functions
;; Liam Healy, Fri Mar 17 2006 - 18:42
;; Time-stamp: <201
1
-1
0
-2
9 23:31:13ED
T bessel.lisp>
;; Time-stamp: <201
4
-1
2
-2
6 13:18:35ES
T bessel.lisp>
;;
;; Copyright 2006, 2007, 2008, 2009, 2011 Liam M. Healy
;; Copyright 2006, 2007, 2008, 2009, 2011
, 2014
Liam M. Healy
;; Distributed under the terms of the GNU General Public License
;;
;; This program is free software: you can redistribute it and/or modify
...
...
@@ -19,6 +19,7 @@
;; along with this program. If not, see <http://www.gnu.org/licenses/>.
(
in-package
:gsl
)
(
named-readtables:in-readtable
:antik
)
;;;;****************************************************************************
;;;; Regular Cylindrical Bessel Functions
...
...
statistics/absolute-deviation.lisp
View file @
24eecac1
;; Absolute deviation
;; Liam Healy, Sun Dec 31 2006 - 13:19
;; Time-stamp: <201
2-01-13 12:01:14
EST absolute-deviation.lisp>
;; Time-stamp: <201
4-12-26 13:18:37
EST absolute-deviation.lisp>
;;
;; Copyright 2006, 2007, 2008, 2009, 2011 Liam M. Healy
;; Copyright 2006, 2007, 2008, 2009, 2011
, 2012, 2014
Liam M. Healy
;; Distributed under the terms of the GNU General Public License
;;
;; This program is free software: you can redistribute it and/or modify
...
...
@@ -19,6 +19,7 @@
;; along with this program. If not, see <http://www.gnu.org/licenses/>.
(
in-package
:gsl
)
(
named-readtables:in-readtable
:antik
)
;;; To do: stride other than 1 when that information is availble from
;;; the vector.
...
...
statistics/autocorrelation.lisp
View file @
24eecac1
;; Autocorrelation
;; Liam Healy, Sun Dec 31 2006 - 13:19
;; Time-stamp: <201
2-01-13 12:01:14
EST autocorrelation.lisp>
;; Time-stamp: <201
4-12-26 13:18:38
EST autocorrelation.lisp>
;;
;; Copyright 2006, 2007, 2008, 2009, 2011 Liam M. Healy
;; Copyright 2006, 2007, 2008, 2009, 2011
, 2012, 2014
Liam M. Healy
;; Distributed under the terms of the GNU General Public License
;;
;; This program is free software: you can redistribute it and/or modify
...
...
@@ -19,6 +19,7 @@
;; along with this program. If not, see <http://www.gnu.org/licenses/>.
(
in-package
:gsl
)
(
named-readtables:in-readtable
:antik
)
;;; To do: stride other than 1 when that information is availble from
;;; the vector.
...
...
statistics/higher-moments.lisp
View file @
24eecac1
;; Skewness and kurtosis.
;; Liam Healy, Sun Dec 31 2006 - 14:20
;; Time-stamp: <201
2-01-13 12:01:13
EST higher-moments.lisp>
;; Time-stamp: <201
4-12-26 13:16:00
EST higher-moments.lisp>
;;
;; Copyright 2006, 2007, 2008, 2009, 2011 Liam M. Healy
;; Copyright 2006, 2007, 2008, 2009, 2011
, 2012, 2014
Liam M. Healy
;; Distributed under the terms of the GNU General Public License
;;
;; This program is free software: you can redistribute it and/or modify
...
...
@@ -19,6 +19,8 @@
;; along with this program. If not, see <http://www.gnu.org/licenses/>.
(
in-package
:gsl
)
(
named-readtables:in-readtable
:antik
)
;;; To do: stride other than 1 when that information is availble from
;;; the vector.
...
...
statistics/median-percentile.lisp
View file @
24eecac1
;; Median and percentile
;; Liam Healy, Sun Dec 31 2006 - 13:19
;; Time-stamp: <201
2-01-13 12:01:12
EST median-percentile.lisp>
;; Time-stamp: <201
4-12-26 13:18:37
EST median-percentile.lisp>
;;
;; Copyright 2006, 2007, 2008, 2009, 2011 Liam M. Healy
;; Copyright 2006, 2007, 2008, 2009, 2011
, 2012, 2014
Liam M. Healy
;; Distributed under the terms of the GNU General Public License
;;
;; This program is free software: you can redistribute it and/or modify
...
...
@@ -19,6 +19,7 @@
;; along with this program. If not, see <http://www.gnu.org/licenses/>.
(
in-package
:gsl
)
(
named-readtables:in-readtable
:antik
)
;;; To do: stride other than 1 when that information is availble from
;;; the vector.
...
...
wavelet.lisp
View file @
24eecac1
;; Wavelet transforms.
;; Liam Healy, Mon Nov 26 2007 - 20:43
;; Time-stamp: <201
2-01-13 12:01:10
EST wavelet.lisp>
;; Time-stamp: <201
4-12-26 13:18:35
EST wavelet.lisp>
;;
;; Copyright 2006, 2007, 2008, 2009, 2011 Liam M. Healy
;; Copyright 2006, 2007, 2008, 2009, 2011
, 2012, 2014
Liam M. Healy
;; Distributed under the terms of the GNU General Public License
;;
;; This program is free software: you can redistribute it and/or modify
...
...
@@ -19,6 +19,7 @@
;; along with this program. If not, see <http://www.gnu.org/licenses/>.
(
in-package
:gsl
)
(
named-readtables:in-readtable
:antik
)
;;; /usr/include/gsl/gsl_wavelet.h
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment