Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gsll
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Selwyn Simsek
gsll
Commits
24eecac1
Commit
24eecac1
authored
Dec 27, 2014
by
Liam Healy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use Antik named readtable
parent
cc83456a
Changes
13
Hide whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
40 additions
and
26 deletions
+40
-26
hankel.lisp
hankel.lisp
+3
-2
linear-algebra/exponential.lisp
linear-algebra/exponential.lisp
+3
-2
polynomial.lisp
polynomial.lisp
+3
-2
random/dirichlet.lisp
random/dirichlet.lisp
+3
-2
random/discrete.lisp
random/discrete.lisp
+3
-2
random/multinomial.lisp
random/multinomial.lisp
+3
-2
random/shuffling-sampling.lisp
random/shuffling-sampling.lisp
+3
-2
special-functions/bessel.lisp
special-functions/bessel.lisp
+3
-2
statistics/absolute-deviation.lisp
statistics/absolute-deviation.lisp
+3
-2
statistics/autocorrelation.lisp
statistics/autocorrelation.lisp
+3
-2
statistics/higher-moments.lisp
statistics/higher-moments.lisp
+4
-2
statistics/median-percentile.lisp
statistics/median-percentile.lisp
+3
-2
wavelet.lisp
wavelet.lisp
+3
-2
No files found.
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-10-29 23:31:13ED
T bessel.lisp>
;; Time-stamp: <201
4-12-26 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
Markdown
is supported
0%
Try again
or
attach a new file
Attach a 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