aboutsummaryrefslogtreecommitdiff
path: root/math
diff options
context:
space:
mode:
authorMaho Nakata <maho@FreeBSD.org>2007-12-25 03:37:51 +0000
committerMaho Nakata <maho@FreeBSD.org>2007-12-25 03:37:51 +0000
commitf59910605b75acdc566c4f21e973383e082a2bde (patch)
treec9f4368699caf3ce79a0c92ec165b0eea20865ba /math
parent9b29d084c23668199c6b635757f3e27785e7651b (diff)
downloadports-f59910605b75acdc566c4f21e973383e082a2bde.tar.gz
ports-f59910605b75acdc566c4f21e973383e082a2bde.zip
Update to 3.0.0, and grab maintainership.
Notes
Notes: svn path=/head/; revision=204482
Diffstat (limited to 'math')
-rw-r--r--math/octave/Makefile100
-rw-r--r--math/octave/distinfo6
-rw-r--r--math/octave/files/octave.in4
-rw-r--r--math/octave/files/patch-aa11
-rw-r--r--math/octave/files/patch-ab20
-rw-r--r--math/octave/files/patch-ag14
-rw-r--r--math/octave/files/patch-doc:interpreter:Makefile.in11
-rw-r--r--math/octave/files/patch-examples+Makefile.in17
-rw-r--r--math/octave/files/patch-libcruft+mkf77def.in10
-rw-r--r--math/octave/files/patch-mkoctfile.in11
-rw-r--r--math/octave/files/patch-src+Makefile.in13
-rw-r--r--math/octave/pkg-plist1867
12 files changed, 1224 insertions, 860 deletions
diff --git a/math/octave/Makefile b/math/octave/Makefile
index c47bd21371d5..986d34ec2199 100644
--- a/math/octave/Makefile
+++ b/math/octave/Makefile
@@ -6,69 +6,97 @@
#
PORTNAME= octave
-PORTVERSION= 2.1.73
-PORTREVISION= 3
+PORTVERSION= 3.0.0
CATEGORIES= math
-MASTER_SITES= ftp://ftp.octave.org/pub/octave/bleeding-edge/ \
- ftp://ftp.eos.hokudai.ac.jp/pub/GNU/misc/octave/bleeding-edge/ \
- http://neacm.fe.up.pt/pub/octave/bleeding-edge/ \
- ftp://ftp.lublin.pl/site/octave/bleeding-edge/
+MASTER_SITES= ftp://ftp.octave.org/pub/octave/ \
+ ftp://ftp.u-aizu.ac.jp/pub/SciEng/numanal/Octave/bleeding-edge/
-MAINTAINER= ports@FreeBSD.org
+MAINTAINER= maho@FreeBSD.org
COMMENT= High-level interactive language for numerical computations
-BUILD_DEPENDS= gnuplot:${PORTSDIR}/math/gnuplot
+BUILD_DEPENDS+= gnuplot:${PORTSDIR}/math/gnuplot \
+ ${LOCALBASE}/bin/gperf:${PORTSDIR}/devel/gperf \
+ ${LOCALBASE}/lib/libglpk.a:${PORTSDIR}/math/glpk \
+ gsed:${PORTSDIR}/textproc/gsed \
+ dvips:${PORTSDIR}/print/dvipsk-tetex
RUN_DEPENDS= gnuplot:${PORTSDIR}/math/gnuplot
-LIB_DEPENDS= fftw.2:${PORTSDIR}/math/fftw
+LIB_DEPENDS= fftw3:${PORTSDIR}/math/fftw3 \
+ hdf5:${PORTSDIR}/science/hdf5 \
+ umfpack.1:${PORTSDIR}/math/suitesparse \
+ qhull:${PORTSDIR}/math/qhull
+
+LATEST_LINK= octave-devel
USE_BZIP2= yes
USE_PERL5_BUILD=yes
USE_GMAKE= yes
GNU_CONFIGURE= yes
-USE_LDCONFIG= ${PREFIX}/lib/octave-${OCTAVE_VERSION}
+USE_AUTOTOOLS= autoconf:261 autoheader:261
INFO= octave liboctave
MAN1= octave.1 octave-bug.1 mkoctfile.1 octave-config.1
-OCTAVE_VERSION= ${PORTVERSION}
-GNU_HOST= ${ARCH}-portbld-freebsd${OSREL}
-PLIST_SUB= OCTAVE_VERSION=${OCTAVE_VERSION} GNU_HOST=${GNU_HOST}
+.include <bsd.port.pre.mk>
+
+.if ${OSVERSION} < 600000
+BUILD_DEPENDS+= info:${PORTSDIR}/print/texinfo
+BROKEN= Fails to install
+.endif
+
+.if exists(${LOCALBASE}/lib/libatlas_r.so) && !defined(WITH_BLAS)
+WITH_ATLAS= yes
+.endif
+.if defined(WITH_ATLAS)
+LIB_DEPENDS+= atlas.2:${PORTSDIR}/math/atlas
+BLAS= -lf77blas -latlas
+LAPACK= -lalapack
+.else
+LIB_DEPENDS+= blas.2:${PORTSDIR}/math/blas
+LIB_DEPENDS+= lapack.4:${PORTSDIR}/math/lapack
+BLAS= -lblas
+LAPACK= -llapack
+.endif
USE_FORTRAN= yes
-CONFIGURE_ENV= LDFLAGS="${LDFLAGS} -L${LOCALBASE}/lib" \
- CPPFLAGS="${CPPFLAGS} -I${LOCALBASE}/include" \
- F77="${F77}" \
- FFLAGS="${FFLAGS}"
+OCTAVE_VERSION= ${PORTVERSION}
+GNU_HOST= ${ARCH}-portbld-freebsd${OSREL}
+PLIST_SUB= OCTAVE_VERSION=${OCTAVE_VERSION} GNU_HOST=${GNU_HOST}
+INCLUDES= -I${LOCALBASE}/include -I${LOCALBASE}/include/metis
+MAKE_ENV+= CFLAGS="${CFLAGS} ${INCLUDES}" \
+ CXXFLAGS="${CXXFLAGS} ${INCLUDES}" \
+ CPPFLAGS="${CPPFLAGS} ${INCLUDES}" \
+ LDFLAGS="${LDFLAGS} -L${LOCALBASE}/lib ${PTHREAD_LIBS}" \
+ CC="${CC}" \
+ CXX="${CXX}"
+CONFIGURE_ENV+= GPERF="${LOCALBASE}/bin/gperf" \
+ LDFLAGS="${LDFLAGS} -L${LOCALBASE}/lib ${PTHREAD_LIBS}" \
+ CFLAGS="${CFLAGS} ${INCLUDES}" \
+ CXXFLAGS="${CXXFLAGS} ${INCLUDES}" \
+ CPPFLAGS="${CPPFLAGS} ${INCLUDES}" \
+ F77="${FC}" \
+ FFLAGS="${FFLAGS}" \
+ CC="${CC}" \
+ CXX="${CXX}"
CONFIGURE_ARGS= --host=${GNU_HOST} \
+ --with-blas="-L${LOCALBASE}/lib ${BLAS}" \
+ --with-lapack="${LAPACK}" \
--enable-shared
SUB_FILES= octave
-SUB_LIST= OCTAVE_VERSION="${OCTAVE_VERSION}"
-
-.include <bsd.port.pre.mk>
+SUB_LIST= OCTAVE_VERSION="${OCTAVE_VERSION}" GNU_HOST="${GNU_HOST}"
-.if exists(${LOCALBASE}/lib/libatlas_r.so) && !defined(WITH_BLAS)
-WITH_ATLAS= yes
-.endif
-
-.if defined(WITH_ATLAS)
-LIB_DEPENDS+= atlas.2:${PORTSDIR}/math/atlas
-CONFIGURE_ARGS+= --with-blas="-L${LOCALBASE}/lib -lf77blas -lcblas -latlas" \
- --with-lapack=-lalapack
-.else
-LIB_DEPENDS+= blas.2:${PORTSDIR}/math/blas
-CONFIGURE_ARGS+= --with-blas="-L${LOCALBASE}/lib -lblas"
-.endif
+pre-configure:
+ @cd ${WRKSRC}/scripts ; ${AUTOCONF}
post-install:
- ${MV} ${PREFIX}/bin/octave-${OCTAVE_VERSION} ${PREFIX}/libexec/octave/${OCTAVE_VERSION}
- ${INSTALL_SCRIPT} ${WRKDIR}/octave ${PREFIX}/bin
- ${INSTALL_SCRIPT} ${WRKDIR}/octave ${PREFIX}/bin/octave-${OCTAVE_VERSION}
${INSTALL_DATA} ${WRKSRC}/doc/liboctave/liboctave.info ${PREFIX}/info
+ ${MV} ${PREFIX}/bin/${PORTNAME}-${PORTVERSION} ${PREFIX}/libexec/${PORTNAME}/${PORTVERSION}/exec/${GNU_HOST}
+ ${INSTALL_SCRIPT} ${WRKDIR}/${PORTNAME} ${PREFIX}/bin/${PORTNAME}-${PORTVERSION}
+ ${LN} -fs ${PREFIX}/bin/${PORTNAME}-${PORTVERSION} ${PREFIX}/bin/${PORTNAME}
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
-.for file in faq/Octave-FAQ.ps interpreter/octave.ps liboctave/liboctave.ps \
+.for file in faq/Octave-FAQ.ps liboctave/liboctave.ps \
refcard/refcard-a4.ps refcard/refcard-legal.ps refcard/refcard-letter.ps
${INSTALL_DATA} ${WRKSRC}/doc/${file} ${DOCSDIR}
.endfor
diff --git a/math/octave/distinfo b/math/octave/distinfo
index 1a7b409d2e32..80b90ac08031 100644
--- a/math/octave/distinfo
+++ b/math/octave/distinfo
@@ -1,3 +1,3 @@
-MD5 (octave-2.1.73.tar.bz2) = c356475aa06d81a10f8bf27f1a1d27a0
-SHA256 (octave-2.1.73.tar.bz2) = 8ccaee227c6cad3b5633a904414f17ce73de8eab2abd4d2e6a3972dd878ffbc3
-SIZE (octave-2.1.73.tar.bz2) = 5790133
+MD5 (octave-3.0.0.tar.bz2) = d5512acdf60ac04398ff258cbc37f3c4
+SHA256 (octave-3.0.0.tar.bz2) = f2351eed4f6505993275947802a35ecbc9b7e587ebbb5ee7ba72d54280de4418
+SIZE (octave-3.0.0.tar.bz2) = 9821575
diff --git a/math/octave/files/octave.in b/math/octave/files/octave.in
index 3137cfd614bd..c2455ab5082f 100644
--- a/math/octave/files/octave.in
+++ b/math/octave/files/octave.in
@@ -1,8 +1,8 @@
#!/bin/sh
#
-# $FreeBSD: /tmp/pcvs/ports/math/octave/files/Attic/octave.in,v 1.2 2006-07-09 02:02:27 maho Exp $
+# $FreeBSD: /tmp/pcvs/ports/math/octave/files/Attic/octave.in,v 1.3 2007-12-25 03:37:51 maho Exp $
-OCTAVE_EXEC=%%PREFIX%%/libexec/octave/%%OCTAVE_VERSION%%/octave-%%OCTAVE_VERSION%%
+OCTAVE_EXEC=%%PREFIX%%/libexec/octave/%%OCTAVE_VERSION%%/exec/%%GNU_HOST%%/octave-%%OCTAVE_VERSION%%
LD_LIBRARY_PATH=%%PREFIX%%/lib/octave-%%OCTAVE_VERSION%%; export LD_LIBRARY_PATH
exec $OCTAVE_EXEC "$@"
diff --git a/math/octave/files/patch-aa b/math/octave/files/patch-aa
deleted file mode 100644
index d902a0ac32f5..000000000000
--- a/math/octave/files/patch-aa
+++ /dev/null
@@ -1,11 +0,0 @@
---- doc/liboctave/Makefile.in.orig Tue Mar 21 06:10:52 2006
-+++ doc/liboctave/Makefile.in Sat Jul 1 13:50:50 2006
-@@ -48,7 +48,7 @@
- .PHONY: all
-
- liboctave.info: $(TEXINFO)
-- -$(MAKEINFO) -I$(srcdir) -I$(srcdir)/.. $<
-+ -$(MAKEINFO) --force --no-split -I$(srcdir) -I$(srcdir)/.. $<
-
- liboctave.dvi: $(TEXINFO)
- -TEXINPUTS="$(srcdir):$(srcdir)/..:$(TEXINPUTS):" $(TEXI2DVI) $<
diff --git a/math/octave/files/patch-ab b/math/octave/files/patch-ab
deleted file mode 100644
index 37667cf58d8c..000000000000
--- a/math/octave/files/patch-ab
+++ /dev/null
@@ -1,20 +0,0 @@
---- configure.orig Wed May 7 04:08:03 2003
-+++ configure Tue Jun 10 01:14:35 2003
-@@ -700,7 +700,6 @@
- fi
-
- ac_tool_prefix=
--test -n "$host_alias" && ac_tool_prefix=$host_alias-
-
- test "$silent" = yes && exec 6>/dev/null
-
-@@ -18767,6 +18766,9 @@
- $(CXX) -c $(CPPFLAGS) $(CXXFLAGS_NO_PT_FLAGS) $<
-
- unwind-prot.o: unwind-prot.cc
-+ $(CXX) -c $(CPPFLAGS) $(CXXFLAGS_NO_PT_FLAGS) $<
-+
-+xdiv.o: xdiv.cc
- $(CXX) -c $(CPPFLAGS) $(CXXFLAGS_NO_PT_FLAGS) $<
-
- EOF
diff --git a/math/octave/files/patch-ag b/math/octave/files/patch-ag
deleted file mode 100644
index dbabcbe42134..000000000000
--- a/math/octave/files/patch-ag
+++ /dev/null
@@ -1,14 +0,0 @@
---- src/sysdep.cc.orig Sat Jan 4 15:21:29 2003
-+++ src/sysdep.cc Tue Jun 10 01:23:09 2003
-@@ -98,7 +98,11 @@
- #ifndef FP_X_DNML
- #define FP_X_DNML 0
- #endif
-+#if defined(__alpha__)
-+ fpsetmask (~(FP_X_OFL|FP_X_INV|FP_X_DZ|FP_X_UFL|FP_X_IMP));
-+#else
- fpsetmask (~(FP_X_OFL|FP_X_INV|FP_X_DZ|FP_X_DNML|FP_X_UFL|FP_X_IMP));
-+#endif
- #endif
- }
- #endif
diff --git a/math/octave/files/patch-doc:interpreter:Makefile.in b/math/octave/files/patch-doc:interpreter:Makefile.in
deleted file mode 100644
index 26afc3096a99..000000000000
--- a/math/octave/files/patch-doc:interpreter:Makefile.in
+++ /dev/null
@@ -1,11 +0,0 @@
---- doc/interpreter/Makefile.in.orig Tue Mar 21 06:10:52 2006
-+++ doc/interpreter/Makefile.in Sat Jul 1 13:52:37 2006
-@@ -89,7 +89,7 @@
- @$(top_srcdir)/move-if-change $@.t $@
-
- octave.info: $(TEXINFO)
-- -$(MAKEINFO) -I$(srcdir) -I$(srcdir)/.. $<
-+ -$(MAKEINFO) --no-split -I$(srcdir) -I$(srcdir)/.. $<
-
- octave.dvi: $(TEXINFO)
- -TEXINPUTS="$(srcdir):$(srcdir)/..:$(TEXINPUTS):" $(TEXI2DVI) $<
diff --git a/math/octave/files/patch-examples+Makefile.in b/math/octave/files/patch-examples+Makefile.in
new file mode 100644
index 000000000000..8e1f7cf4dbdc
--- /dev/null
+++ b/math/octave/files/patch-examples+Makefile.in
@@ -0,0 +1,17 @@
+--- examples/Makefile.in~ Wed Dec 14 12:13:54 2005
++++ examples/Makefile.in Wed Jul 5 12:59:06 2006
+@@ -51,10 +51,10 @@
+ rm -f $(DESTDIR)$(imagedir)/$$f; \
+ $(INSTALL_DATA) $(srcdir)/$$f $(DESTDIR)$(imagedir)/$$f; \
+ done
+- if test -n "$(DESKTOP_FILE_INSTALL)"; then \
+- $(DESKTOP_FILE_INSTALL) --dir=$(DESTDIR)$(datadir)/applications \
+- --vendor www.octave.org octave.desktop; \
+- fi
++# if test -n "$(DESKTOP_FILE_INSTALL)"; then \
++# $(DESKTOP_FILE_INSTALL) --dir=$(DESTDIR)$(datadir)/applications \
++# --vendor www.octave.org octave.desktop; \
++# fi
+ .PHONY: install install-strip
+
+ tags:
diff --git a/math/octave/files/patch-libcruft+mkf77def.in b/math/octave/files/patch-libcruft+mkf77def.in
new file mode 100644
index 000000000000..baf35379b2b6
--- /dev/null
+++ b/math/octave/files/patch-libcruft+mkf77def.in
@@ -0,0 +1,10 @@
+--- libcruft/mkf77def.in~ Sat Oct 28 08:19:17 2006
++++ libcruft/mkf77def.in Wed Jun 27 16:17:36 2007
+@@ -1,6 +1,6 @@
+ #! /bin/sh
+
+-SED=${SED:-'sed'}
++SED=gsed
+ AWK=${AWK:-'awk'}
+
+ F77_TOLOWER=%F77_APPEND_UNDERSCORE%
diff --git a/math/octave/files/patch-mkoctfile.in b/math/octave/files/patch-mkoctfile.in
deleted file mode 100644
index 23a1315142df..000000000000
--- a/math/octave/files/patch-mkoctfile.in
+++ /dev/null
@@ -1,11 +0,0 @@
---- mkoctfile.in.orig Sun Mar 27 14:13:29 2005
-+++ mkoctfile.in Wed May 25 23:00:43 2005
-@@ -184,7 +184,7 @@
- -D*)
- defs="$defs $1"
- ;;
-- -[lLR]*)
-+ -[lLR]* | -pthread)
- ldflags="$ldflags $1"
- ;;
- -M | --depend)
diff --git a/math/octave/files/patch-src+Makefile.in b/math/octave/files/patch-src+Makefile.in
new file mode 100644
index 000000000000..5da6b5d58a88
--- /dev/null
+++ b/math/octave/files/patch-src+Makefile.in
@@ -0,0 +1,13 @@
+for gendoc part, http://gcc.gnu.org/bugzilla/show_bug.cgi?id=30423
+
+--- src/Makefile.in.orig Sat Sep 30 03:20:15 2006
++++ src/Makefile.in Wed Jan 10 19:26:54 2007
+@@ -313,7 +313,7 @@
+ $(OCTAVE_LIBS) \
+ $(LEXLIB) $(UMFPACK_LIBS) $(AMD_LIBS) $(COLAMD_LIBS) \
+ $(CHOLMOD_LIBS) $(CCOLAMD_LIBS) $(CXSPARSE_LIBS) $(BLAS_LIBS) \
+- $(FFTW_LIBS) $(LIBS) $(FLIBS)
++ $(FFTW_LIBS) $(LIBS) $(FLIBS) -lcamd
+
+ stmp-pic: pic
+ @if [ -f stmp-pic ]; then \
diff --git a/math/octave/pkg-plist b/math/octave/pkg-plist
index 882d2116232e..b307fb9c47c8 100644
--- a/math/octave/pkg-plist
+++ b/math/octave/pkg-plist
@@ -6,7 +6,6 @@ bin/octave-bug
bin/octave-bug-%%OCTAVE_VERSION%%
bin/octave-config
bin/octave-config-%%OCTAVE_VERSION%%
-include/octave-%%OCTAVE_VERSION%%/octave/Array-flags.h
include/octave-%%OCTAVE_VERSION%%/octave/Array-util.h
include/octave-%%OCTAVE_VERSION%%/octave/Array.cc
include/octave-%%OCTAVE_VERSION%%/octave/Array.h
@@ -21,6 +20,7 @@ include/octave-%%OCTAVE_VERSION%%/octave/CDiagMatrix.h
include/octave-%%OCTAVE_VERSION%%/octave/CMatrix.h
include/octave-%%OCTAVE_VERSION%%/octave/CNDArray.h
include/octave-%%OCTAVE_VERSION%%/octave/CRowVector.h
+include/octave-%%OCTAVE_VERSION%%/octave/CSparse.h
include/octave-%%OCTAVE_VERSION%%/octave/Cell.h
include/octave-%%OCTAVE_VERSION%%/octave/CmplxAEPBAL.h
include/octave-%%OCTAVE_VERSION%%/octave/CmplxCHOL.h
@@ -46,8 +46,8 @@ include/octave-%%OCTAVE_VERSION%%/octave/DiagArray2.cc
include/octave-%%OCTAVE_VERSION%%/octave/DiagArray2.h
include/octave-%%OCTAVE_VERSION%%/octave/EIG.h
include/octave-%%OCTAVE_VERSION%%/octave/FEGrid.h
+include/octave-%%OCTAVE_VERSION%%/octave/lo-math.h
include/octave-%%OCTAVE_VERSION%%/octave/LP.h
-include/octave-%%OCTAVE_VERSION%%/octave/LPsolve.h
include/octave-%%OCTAVE_VERSION%%/octave/LSODE-opts.h
include/octave-%%OCTAVE_VERSION%%/octave/LSODE.h
include/octave-%%OCTAVE_VERSION%%/octave/LinConst.h
@@ -60,7 +60,10 @@ include/octave-%%OCTAVE_VERSION%%/octave/MArrayN.cc
include/octave-%%OCTAVE_VERSION%%/octave/MArrayN.h
include/octave-%%OCTAVE_VERSION%%/octave/MDiagArray2.cc
include/octave-%%OCTAVE_VERSION%%/octave/MDiagArray2.h
+include/octave-%%OCTAVE_VERSION%%/octave/MSparse-defs.h
+include/octave-%%OCTAVE_VERSION%%/octave/MSparse.h
include/octave-%%OCTAVE_VERSION%%/octave/Matrix.h
+include/octave-%%OCTAVE_VERSION%%/octave/MatrixType.h
include/octave-%%OCTAVE_VERSION%%/octave/NLConst.h
include/octave-%%OCTAVE_VERSION%%/octave/NLEqn-opts.h
include/octave-%%OCTAVE_VERSION%%/octave/NLEqn.h
@@ -75,6 +78,14 @@ include/octave-%%OCTAVE_VERSION%%/octave/QP.h
include/octave-%%OCTAVE_VERSION%%/octave/Quad-opts.h
include/octave-%%OCTAVE_VERSION%%/octave/Quad.h
include/octave-%%OCTAVE_VERSION%%/octave/Range.h
+include/octave-%%OCTAVE_VERSION%%/octave/Sparse-op-defs.h
+include/octave-%%OCTAVE_VERSION%%/octave/Sparse.h
+include/octave-%%OCTAVE_VERSION%%/octave/SparseCmplxCHOL.h
+include/octave-%%OCTAVE_VERSION%%/octave/SparseCmplxLU.h
+include/octave-%%OCTAVE_VERSION%%/octave/SparseCmplxQR.h
+include/octave-%%OCTAVE_VERSION%%/octave/SparseQR.h
+include/octave-%%OCTAVE_VERSION%%/octave/SparsedbleCHOL.h
+include/octave-%%OCTAVE_VERSION%%/octave/SparsedbleLU.h
include/octave-%%OCTAVE_VERSION%%/octave/base-dae.h
include/octave-%%OCTAVE_VERSION%%/octave/base-de.h
include/octave-%%OCTAVE_VERSION%%/octave/base-list.h
@@ -83,6 +94,8 @@ include/octave-%%OCTAVE_VERSION%%/octave/base-lu.h
include/octave-%%OCTAVE_VERSION%%/octave/base-min.h
include/octave-%%OCTAVE_VERSION%%/octave/boolMatrix.h
include/octave-%%OCTAVE_VERSION%%/octave/boolNDArray.h
+include/octave-%%OCTAVE_VERSION%%/octave/boolSparse.h
+include/octave-%%OCTAVE_VERSION%%/octave/builtins.h
include/octave-%%OCTAVE_VERSION%%/octave/byte-swap.h
include/octave-%%OCTAVE_VERSION%%/octave/c-file-ptr-stream.h
include/octave-%%OCTAVE_VERSION%%/octave/chMatrix.h
@@ -96,6 +109,7 @@ include/octave-%%OCTAVE_VERSION%%/octave/dDiagMatrix.h
include/octave-%%OCTAVE_VERSION%%/octave/dMatrix.h
include/octave-%%OCTAVE_VERSION%%/octave/dNDArray.h
include/octave-%%OCTAVE_VERSION%%/octave/dRowVector.h
+include/octave-%%OCTAVE_VERSION%%/octave/dSparse.h
include/octave-%%OCTAVE_VERSION%%/octave/data-conv.h
include/octave-%%OCTAVE_VERSION%%/octave/dbleAEPBAL.h
include/octave-%%OCTAVE_VERSION%%/octave/dbleCHOL.h
@@ -106,6 +120,7 @@ include/octave-%%OCTAVE_VERSION%%/octave/dbleQR.h
include/octave-%%OCTAVE_VERSION%%/octave/dbleQRP.h
include/octave-%%OCTAVE_VERSION%%/octave/dbleSCHUR.h
include/octave-%%OCTAVE_VERSION%%/octave/dbleSVD.h
+include/octave-%%OCTAVE_VERSION%%/octave/debug.h
include/octave-%%OCTAVE_VERSION%%/octave/defaults.h
include/octave-%%OCTAVE_VERSION%%/octave/defun-dld.h
include/octave-%%OCTAVE_VERSION%%/octave/defun-int.h
@@ -119,9 +134,9 @@ include/octave-%%OCTAVE_VERSION%%/octave/f77-fcn.h
include/octave-%%OCTAVE_VERSION%%/octave/file-io.h
include/octave-%%OCTAVE_VERSION%%/octave/file-ops.h
include/octave-%%OCTAVE_VERSION%%/octave/file-stat.h
-include/octave-%%OCTAVE_VERSION%%/octave/fn-cache.h
include/octave-%%OCTAVE_VERSION%%/octave/getopt.h
include/octave-%%OCTAVE_VERSION%%/octave/glob-match.h
+include/octave-%%OCTAVE_VERSION%%/octave/graphics.h
include/octave-%%OCTAVE_VERSION%%/octave/gripes.h
include/octave-%%OCTAVE_VERSION%%/octave/help.h
include/octave-%%OCTAVE_VERSION%%/octave/idx-vector.h
@@ -139,9 +154,9 @@ include/octave-%%OCTAVE_VERSION%%/octave/lo-error.h
include/octave-%%OCTAVE_VERSION%%/octave/lo-ieee.h
include/octave-%%OCTAVE_VERSION%%/octave/lo-mappers.h
include/octave-%%OCTAVE_VERSION%%/octave/lo-specfun.h
-include/octave-%%OCTAVE_VERSION%%/octave/lo-sstream.h
include/octave-%%OCTAVE_VERSION%%/octave/lo-sysdep.h
include/octave-%%OCTAVE_VERSION%%/octave/lo-utils.h
+include/octave-%%OCTAVE_VERSION%%/octave/load-path.h
include/octave-%%OCTAVE_VERSION%%/octave/load-save.h
include/octave-%%OCTAVE_VERSION%%/octave/ls-hdf5.h
include/octave-%%OCTAVE_VERSION%%/octave/ls-mat-ascii.h
@@ -151,6 +166,9 @@ include/octave-%%OCTAVE_VERSION%%/octave/ls-oct-ascii.h
include/octave-%%OCTAVE_VERSION%%/octave/ls-oct-binary.h
include/octave-%%OCTAVE_VERSION%%/octave/ls-utils.h
include/octave-%%OCTAVE_VERSION%%/octave/mach-info.h
+include/octave-%%OCTAVE_VERSION%%/octave/md5.h
+include/octave-%%OCTAVE_VERSION%%/octave/mex.h
+include/octave-%%OCTAVE_VERSION%%/octave/mexproto.h
include/octave-%%OCTAVE_VERSION%%/octave/mx-base.h
include/octave-%%OCTAVE_VERSION%%/octave/mx-cdm-cm.h
include/octave-%%OCTAVE_VERSION%%/octave/mx-cdm-cs.h
@@ -403,10 +421,13 @@ include/octave-%%OCTAVE_VERSION%%/octave/mx-ui8nda-ui32.h
include/octave-%%OCTAVE_VERSION%%/octave/mx-ui8nda-ui32nda.h
include/octave-%%OCTAVE_VERSION%%/octave/mx-ui8nda-ui64.h
include/octave-%%OCTAVE_VERSION%%/octave/mx-ui8nda-ui64nda.h
+include/octave-%%OCTAVE_VERSION%%/octave/mxarray.h
include/octave-%%OCTAVE_VERSION%%/octave/oct-alloc.h
include/octave-%%OCTAVE_VERSION%%/octave/oct-cmplx.h
include/octave-%%OCTAVE_VERSION%%/octave/oct-conf.h
+include/octave-%%OCTAVE_VERSION%%/octave/oct-dlldefs.h
include/octave-%%OCTAVE_VERSION%%/octave/oct-env.h
+include/octave-%%OCTAVE_VERSION%%/octave/oct-errno.h
include/octave-%%OCTAVE_VERSION%%/octave/oct-fftw.h
include/octave-%%OCTAVE_VERSION%%/octave/oct-fstrm.h
include/octave-%%OCTAVE_VERSION%%/octave/oct-getopt.h
@@ -417,6 +438,7 @@ include/octave-%%OCTAVE_VERSION%%/octave/oct-inttypes.h
include/octave-%%OCTAVE_VERSION%%/octave/oct-iostrm.h
include/octave-%%OCTAVE_VERSION%%/octave/oct-lvalue.h
include/octave-%%OCTAVE_VERSION%%/octave/oct-map.h
+include/octave-%%OCTAVE_VERSION%%/octave/oct-md5.h
include/octave-%%OCTAVE_VERSION%%/octave/oct-obj.h
include/octave-%%OCTAVE_VERSION%%/octave/oct-passwd.h
include/octave-%%OCTAVE_VERSION%%/octave/oct-prcstrm.h
@@ -427,22 +449,28 @@ include/octave-%%OCTAVE_VERSION%%/octave/oct-rl-hist.h
include/octave-%%OCTAVE_VERSION%%/octave/oct-shlib.h
include/octave-%%OCTAVE_VERSION%%/octave/oct-sort.cc
include/octave-%%OCTAVE_VERSION%%/octave/oct-sort.h
+include/octave-%%OCTAVE_VERSION%%/octave/oct-sparse.h
+include/octave-%%OCTAVE_VERSION%%/octave/oct-spparms.h
include/octave-%%OCTAVE_VERSION%%/octave/oct-stdstrm.h
include/octave-%%OCTAVE_VERSION%%/octave/oct-stream.h
include/octave-%%OCTAVE_VERSION%%/octave/oct-strstrm.h
include/octave-%%OCTAVE_VERSION%%/octave/oct-syscalls.h
include/octave-%%OCTAVE_VERSION%%/octave/oct-time.h
+include/octave-%%OCTAVE_VERSION%%/octave/oct-types.h
+include/octave-%%OCTAVE_VERSION%%/octave/oct-uname.h
include/octave-%%OCTAVE_VERSION%%/octave/oct.h
include/octave-%%OCTAVE_VERSION%%/octave/octave.h
include/octave-%%OCTAVE_VERSION%%/octave/ops.h
include/octave-%%OCTAVE_VERSION%%/octave/ov-base-int.cc
include/octave-%%OCTAVE_VERSION%%/octave/ov-base-int.h
-include/octave-%%OCTAVE_VERSION%%/octave/ov-base-mat.h
include/octave-%%OCTAVE_VERSION%%/octave/ov-base-mat.cc
-include/octave-%%OCTAVE_VERSION%%/octave/ov-base-scalar.h
+include/octave-%%OCTAVE_VERSION%%/octave/ov-base-mat.h
include/octave-%%OCTAVE_VERSION%%/octave/ov-base-scalar.cc
+include/octave-%%OCTAVE_VERSION%%/octave/ov-base-scalar.h
+include/octave-%%OCTAVE_VERSION%%/octave/ov-base-sparse.h
include/octave-%%OCTAVE_VERSION%%/octave/ov-base.h
include/octave-%%OCTAVE_VERSION%%/octave/ov-bool-mat.h
+include/octave-%%OCTAVE_VERSION%%/octave/ov-bool-sparse.h
include/octave-%%OCTAVE_VERSION%%/octave/ov-bool.h
include/octave-%%OCTAVE_VERSION%%/octave/ov-builtin.h
include/octave-%%OCTAVE_VERSION%%/octave/ov-cell.h
@@ -451,11 +479,11 @@ include/octave-%%OCTAVE_VERSION%%/octave/ov-colon.h
include/octave-%%OCTAVE_VERSION%%/octave/ov-complex.h
include/octave-%%OCTAVE_VERSION%%/octave/ov-cs-list.h
include/octave-%%OCTAVE_VERSION%%/octave/ov-cx-mat.h
+include/octave-%%OCTAVE_VERSION%%/octave/ov-cx-sparse.h
include/octave-%%OCTAVE_VERSION%%/octave/ov-dld-fcn.h
include/octave-%%OCTAVE_VERSION%%/octave/ov-fcn-handle.h
include/octave-%%OCTAVE_VERSION%%/octave/ov-fcn-inline.h
include/octave-%%OCTAVE_VERSION%%/octave/ov-fcn.h
-include/octave-%%OCTAVE_VERSION%%/octave/ov-file.h
include/octave-%%OCTAVE_VERSION%%/octave/ov-int-traits.h
include/octave-%%OCTAVE_VERSION%%/octave/ov-int16.h
include/octave-%%OCTAVE_VERSION%%/octave/ov-int32.h
@@ -464,8 +492,10 @@ include/octave-%%OCTAVE_VERSION%%/octave/ov-int8.h
include/octave-%%OCTAVE_VERSION%%/octave/ov-intx.h
include/octave-%%OCTAVE_VERSION%%/octave/ov-list.h
include/octave-%%OCTAVE_VERSION%%/octave/ov-mapper.h
+include/octave-%%OCTAVE_VERSION%%/octave/ov-mex-fcn.h
include/octave-%%OCTAVE_VERSION%%/octave/ov-range.h
include/octave-%%OCTAVE_VERSION%%/octave/ov-re-mat.h
+include/octave-%%OCTAVE_VERSION%%/octave/ov-re-sparse.h
include/octave-%%OCTAVE_VERSION%%/octave/ov-scalar.h
include/octave-%%OCTAVE_VERSION%%/octave/ov-str-mat.h
include/octave-%%OCTAVE_VERSION%%/octave/ov-streamoff.h
@@ -477,7 +507,6 @@ include/octave-%%OCTAVE_VERSION%%/octave/ov-uint32.h
include/octave-%%OCTAVE_VERSION%%/octave/ov-uint64.h
include/octave-%%OCTAVE_VERSION%%/octave/ov-uint8.h
include/octave-%%OCTAVE_VERSION%%/octave/ov-usr-fcn.h
-include/octave-%%OCTAVE_VERSION%%/octave/ov-va-args.h
include/octave-%%OCTAVE_VERSION%%/octave/ov.h
include/octave-%%OCTAVE_VERSION%%/octave/pager.h
include/octave-%%OCTAVE_VERSION%%/octave/parse.h
@@ -506,7 +535,6 @@ include/octave-%%OCTAVE_VERSION%%/octave/pt-jump.h
include/octave-%%OCTAVE_VERSION%%/octave/pt-loop.h
include/octave-%%OCTAVE_VERSION%%/octave/pt-mat.h
include/octave-%%OCTAVE_VERSION%%/octave/pt-misc.h
-include/octave-%%OCTAVE_VERSION%%/octave/pt-plot.h
include/octave-%%OCTAVE_VERSION%%/octave/pt-pr-code.h
include/octave-%%OCTAVE_VERSION%%/octave/pt-select.h
include/octave-%%OCTAVE_VERSION%%/octave/pt-stmt.h
@@ -514,9 +542,37 @@ include/octave-%%OCTAVE_VERSION%%/octave/pt-unop.h
include/octave-%%OCTAVE_VERSION%%/octave/pt-walk.h
include/octave-%%OCTAVE_VERSION%%/octave/pt.h
include/octave-%%OCTAVE_VERSION%%/octave/quit.h
+include/octave-%%OCTAVE_VERSION%%/octave/randgamma.h
+include/octave-%%OCTAVE_VERSION%%/octave/randmtzig.h
+include/octave-%%OCTAVE_VERSION%%/octave/randpoisson.h
include/octave-%%OCTAVE_VERSION%%/octave/sighandlers.h
include/octave-%%OCTAVE_VERSION%%/octave/siglist.h
+include/octave-%%OCTAVE_VERSION%%/octave/smx-bm-sbm.h
+include/octave-%%OCTAVE_VERSION%%/octave/smx-cm-scm.h
+include/octave-%%OCTAVE_VERSION%%/octave/smx-cm-sm.h
+include/octave-%%OCTAVE_VERSION%%/octave/smx-cs-sm.h
+include/octave-%%OCTAVE_VERSION%%/octave/smx-m-scm.h
+include/octave-%%OCTAVE_VERSION%%/octave/smx-m-sm.h
+include/octave-%%OCTAVE_VERSION%%/octave/smx-s-scm.h
+include/octave-%%OCTAVE_VERSION%%/octave/smx-sbm-bm.h
+include/octave-%%OCTAVE_VERSION%%/octave/smx-scm-cm.h
+include/octave-%%OCTAVE_VERSION%%/octave/smx-scm-m.h
+include/octave-%%OCTAVE_VERSION%%/octave/smx-scm-s.h
+include/octave-%%OCTAVE_VERSION%%/octave/smx-scm-sm.h
+include/octave-%%OCTAVE_VERSION%%/octave/smx-sm-cm.h
+include/octave-%%OCTAVE_VERSION%%/octave/smx-sm-cs.h
+include/octave-%%OCTAVE_VERSION%%/octave/smx-sm-m.h
+include/octave-%%OCTAVE_VERSION%%/octave/smx-sm-scm.h
include/octave-%%OCTAVE_VERSION%%/octave/so-array.h
+include/octave-%%OCTAVE_VERSION%%/octave/sparse-base-chol.cc
+include/octave-%%OCTAVE_VERSION%%/octave/sparse-base-chol.h
+include/octave-%%OCTAVE_VERSION%%/octave/sparse-base-lu.cc
+include/octave-%%OCTAVE_VERSION%%/octave/sparse-base-lu.h
+include/octave-%%OCTAVE_VERSION%%/octave/sparse-dmsolve.cc
+include/octave-%%OCTAVE_VERSION%%/octave/sparse-sort.h
+include/octave-%%OCTAVE_VERSION%%/octave/sparse-util.h
+include/octave-%%OCTAVE_VERSION%%/octave/sparse-xdiv.h
+include/octave-%%OCTAVE_VERSION%%/octave/sparse-xpow.h
include/octave-%%OCTAVE_VERSION%%/octave/statdefs.h
include/octave-%%OCTAVE_VERSION%%/octave/str-vec.h
include/octave-%%OCTAVE_VERSION%%/octave/sun-utils.h
@@ -549,801 +605,1108 @@ include/octave-%%OCTAVE_VERSION%%/octave/vx-s-ccv.h
include/octave-%%OCTAVE_VERSION%%/octave/vx-s-crv.h
include/octave-%%OCTAVE_VERSION%%/octave/xdiv.h
include/octave-%%OCTAVE_VERSION%%/octave/xpow.h
-lib/octave-%%OCTAVE_VERSION%%/libcruft.a
+include/octave-%%OCTAVE_VERSION%%/octave/zfstream.h
+@dirrm include/octave-%%OCTAVE_VERSION%%/octave
+@dirrm include/octave-%%OCTAVE_VERSION%%
lib/octave-%%OCTAVE_VERSION%%/libcruft.so
lib/octave-%%OCTAVE_VERSION%%/libcruft.so.%%OCTAVE_VERSION%%
-lib/octave-%%OCTAVE_VERSION%%/liboctave.a
lib/octave-%%OCTAVE_VERSION%%/liboctave.so
lib/octave-%%OCTAVE_VERSION%%/liboctave.so.%%OCTAVE_VERSION%%
-lib/octave-%%OCTAVE_VERSION%%/liboctinterp.a
lib/octave-%%OCTAVE_VERSION%%/liboctinterp.so
lib/octave-%%OCTAVE_VERSION%%/liboctinterp.so.%%OCTAVE_VERSION%%
-@unexec rm -f %D/lib/octave
-@exec ln -sf octave-%%OCTAVE_VERSION%% %D/lib/octave
+@dirrm lib/octave-%%OCTAVE_VERSION%%
libexec/octave/%%OCTAVE_VERSION%%/exec/%%GNU_HOST%%/info-emacs-info
libexec/octave/%%OCTAVE_VERSION%%/exec/%%GNU_HOST%%/info-emacs-octave-help
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/airy.oct
+libexec/octave/%%OCTAVE_VERSION%%/exec/%%GNU_HOST%%/octave-%%OCTAVE_VERSION%%
+libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/PKG_ADD
+libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/bsxfun.oct
+libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/convhulln.oct
+libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/tsearch.oct
+libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/typecast.oct
+libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/__delaunayn__.oct
+libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/__dsearchn__.oct
+libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/__lin_interpn__.oct
+libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/__voronoi__.oct
+libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/__contourc__.oct
+libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/__glpk__.oct
+libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/__gnuplot_raw__.oct
+libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/__pchip_deriv__.oct
+libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/__qp__.oct
libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/balance.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/besselh.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/besseli.oct
libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/besselj.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/besselk.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/bessely.oct
libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/betainc.oct
+libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/ccolamd.oct
+libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/cellfun.oct
libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/chol.oct
+libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/colamd.oct
libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/colloc.oct
+libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/conv2.oct
libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/daspk.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/daspk_options.oct
libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/dasrt.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/dasrt_options.oct
libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/dassl.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/dassl_options.oct
libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/det.oct
+libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/dispatch.oct
libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/eig.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/endgrent.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/endpwent.oct
libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/expm.oct
libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/fft.oct
libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/fft2.oct
libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/fftn.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/fftw_wisdom.oct
+libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/fftw.oct
libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/filter.oct
libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/find.oct
libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/fsolve.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/fsolve_options.oct
libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/gammainc.oct
libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/gcd.oct
libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/getgrent.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/getgrgid.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/getgrnam.oct
libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/getpwent.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/getpwnam.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/getpwuid.oct
libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/getrusage.oct
libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/givens.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/gmtime.oct
libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/hess.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/ifft.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/ifft2.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/ifftn.oct
libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/inv.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/inverse.oct
libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/kron.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/localtime.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/lpsolve.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/lpsolve_options.oct
libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/lsode.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/lsode_options.oct
libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/lu.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/max.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/min.oct
+libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/luinc.oct
+libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/matrix_type.oct
+libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/md5sum.oct
libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/minmax.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/mktime.oct
libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/pinv.oct
libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/qr.oct
libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/quad.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/quad_options.oct
libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/qz.oct
libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/rand.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/randn.oct
+libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/regexp.oct
libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/schur.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/setgrent.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/setpwent.oct
libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/sort.oct
+libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/sparse.oct
+libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/spchol.oct
+libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/spdet.oct
+libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/spfind.oct
+libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/spkron.oct
+libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/splu.oct
+libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/spparms.oct
+libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/spqr.oct
libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/sqrtm.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/strftime.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/strptime.oct
libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/svd.oct
libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/syl.oct
+libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/symrcm.oct
libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/time.oct
-libexec/octave/%%OCTAVE_VERSION%%/octave-%%OCTAVE_VERSION%%
+libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/urlwrite.oct
libexec/octave/ls-R
+@exec mkdir -p %D/libexec/octave/site/exec/%%GNU_HOST%% 2>/dev/null || true
+@exec mkdir -p %D/libexec/octave/%%OCTAVE_VERSION%%/site/exec/%%GNU_HOST%% 2>/dev/null || true
+@dirrm libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%
+@dirrm libexec/octave/%%OCTAVE_VERSION%%/oct
+@dirrm libexec/octave/%%OCTAVE_VERSION%%/exec/%%GNU_HOST%%
+@dirrm libexec/octave/%%OCTAVE_VERSION%%/exec
+@dirrm libexec/octave/%%OCTAVE_VERSION%%/site/exec/%%GNU_HOST%%
+@dirrm libexec/octave/%%OCTAVE_VERSION%%/site/exec
+@dirrm libexec/octave/%%OCTAVE_VERSION%%/site
+@dirrm libexec/octave/%%OCTAVE_VERSION%%
+@dirrm libexec/octave/site/exec/%%GNU_HOST%%
+@dirrm libexec/octave/site/exec
+@dirrm libexec/octave/site
+@dirrm libexec/octave
+share/octave/%%OCTAVE_VERSION%%/NEWS
+share/octave/%%OCTAVE_VERSION%%/imagelib/default.img
+share/octave/%%OCTAVE_VERSION%%/imagelib/octave-sombrero.png
+share/octave/%%OCTAVE_VERSION%%/m/audio/lin2mu.m
+share/octave/%%OCTAVE_VERSION%%/m/audio/loadaudio.m
+share/octave/%%OCTAVE_VERSION%%/m/audio/mu2lin.m
+share/octave/%%OCTAVE_VERSION%%/m/audio/playaudio.m
+share/octave/%%OCTAVE_VERSION%%/m/audio/record.m
+share/octave/%%OCTAVE_VERSION%%/m/audio/saveaudio.m
+share/octave/%%OCTAVE_VERSION%%/m/audio/setaudio.m
+share/octave/%%OCTAVE_VERSION%%/m/audio/wavread.m
+share/octave/%%OCTAVE_VERSION%%/m/audio/wavwrite.m
+share/octave/%%OCTAVE_VERSION%%/m/control/base/DEMOcontrol.m
+share/octave/%%OCTAVE_VERSION%%/m/control/base/__bodquist__.m
+share/octave/%%OCTAVE_VERSION%%/m/control/base/__freqresp__.m
+share/octave/%%OCTAVE_VERSION%%/m/control/base/__stepimp__.m
+share/octave/%%OCTAVE_VERSION%%/m/control/base/analdemo.m
+share/octave/%%OCTAVE_VERSION%%/m/control/base/are.m
+share/octave/%%OCTAVE_VERSION%%/m/control/base/bddemo.m
+share/octave/%%OCTAVE_VERSION%%/m/control/base/bode.m
+share/octave/%%OCTAVE_VERSION%%/m/control/base/bode_bounds.m
+share/octave/%%OCTAVE_VERSION%%/m/control/base/controldemo.m
+share/octave/%%OCTAVE_VERSION%%/m/control/base/ctrb.m
+share/octave/%%OCTAVE_VERSION%%/m/control/base/damp.m
+share/octave/%%OCTAVE_VERSION%%/m/control/base/dare.m
+share/octave/%%OCTAVE_VERSION%%/m/control/base/dcgain.m
+share/octave/%%OCTAVE_VERSION%%/m/control/base/dgram.m
+share/octave/%%OCTAVE_VERSION%%/m/control/base/dkalman.m
+share/octave/%%OCTAVE_VERSION%%/m/control/base/dlqe.m
+share/octave/%%OCTAVE_VERSION%%/m/control/base/dlqr.m
+share/octave/%%OCTAVE_VERSION%%/m/control/base/dlyap.m
+share/octave/%%OCTAVE_VERSION%%/m/control/base/dre.m
+share/octave/%%OCTAVE_VERSION%%/m/control/base/frdemo.m
+share/octave/%%OCTAVE_VERSION%%/m/control/base/freqchkw.m
+share/octave/%%OCTAVE_VERSION%%/m/control/base/gram.m
+share/octave/%%OCTAVE_VERSION%%/m/control/base/impulse.m
+share/octave/%%OCTAVE_VERSION%%/m/control/base/lqe.m
+share/octave/%%OCTAVE_VERSION%%/m/control/base/lqg.m
+share/octave/%%OCTAVE_VERSION%%/m/control/base/lqr.m
+share/octave/%%OCTAVE_VERSION%%/m/control/base/lsim.m
+share/octave/%%OCTAVE_VERSION%%/m/control/base/ltifr.m
+share/octave/%%OCTAVE_VERSION%%/m/control/base/lyap.m
+share/octave/%%OCTAVE_VERSION%%/m/control/base/nichols.m
+share/octave/%%OCTAVE_VERSION%%/m/control/base/nyquist.m
+share/octave/%%OCTAVE_VERSION%%/m/control/base/obsv.m
+share/octave/%%OCTAVE_VERSION%%/m/control/base/place.m
+share/octave/%%OCTAVE_VERSION%%/m/control/base/pzmap.m
+share/octave/%%OCTAVE_VERSION%%/m/control/base/rldemo.m
+share/octave/%%OCTAVE_VERSION%%/m/control/base/rlocus.m
+share/octave/%%OCTAVE_VERSION%%/m/control/base/step.m
+share/octave/%%OCTAVE_VERSION%%/m/control/base/tzero.m
+share/octave/%%OCTAVE_VERSION%%/m/control/base/tzero2.m
+share/octave/%%OCTAVE_VERSION%%/m/control/hinf/dgkfdemo.m
+share/octave/%%OCTAVE_VERSION%%/m/control/hinf/dhinfdemo.m
+share/octave/%%OCTAVE_VERSION%%/m/control/hinf/h2norm.m
+share/octave/%%OCTAVE_VERSION%%/m/control/hinf/h2syn.m
+share/octave/%%OCTAVE_VERSION%%/m/control/hinf/hinf_ctr.m
+share/octave/%%OCTAVE_VERSION%%/m/control/hinf/hinfdemo.m
+share/octave/%%OCTAVE_VERSION%%/m/control/hinf/hinfnorm.m
+share/octave/%%OCTAVE_VERSION%%/m/control/hinf/hinfsyn.m
+share/octave/%%OCTAVE_VERSION%%/m/control/hinf/hinfsyn_chk.m
+share/octave/%%OCTAVE_VERSION%%/m/control/hinf/hinfsyn_ric.m
+share/octave/%%OCTAVE_VERSION%%/m/control/hinf/is_dgkf.m
+share/octave/%%OCTAVE_VERSION%%/m/control/hinf/wgt1o.m
+share/octave/%%OCTAVE_VERSION%%/m/control/obsolete/dezero.m
+share/octave/%%OCTAVE_VERSION%%/m/control/obsolete/dlqg.m
+share/octave/%%OCTAVE_VERSION%%/m/control/obsolete/minfo.m
+share/octave/%%OCTAVE_VERSION%%/m/control/obsolete/packsys.m
+share/octave/%%OCTAVE_VERSION%%/m/control/obsolete/qzval.m
+share/octave/%%OCTAVE_VERSION%%/m/control/obsolete/rotg.m
+share/octave/%%OCTAVE_VERSION%%/m/control/obsolete/series.m
+share/octave/%%OCTAVE_VERSION%%/m/control/obsolete/swapcols.m
+share/octave/%%OCTAVE_VERSION%%/m/control/obsolete/swaprows.m
+share/octave/%%OCTAVE_VERSION%%/m/control/obsolete/syschnames.m
+share/octave/%%OCTAVE_VERSION%%/m/control/obsolete/unpacksys.m
+share/octave/%%OCTAVE_VERSION%%/m/control/system/__abcddims__.m
+share/octave/%%OCTAVE_VERSION%%/m/control/system/__syschnamesl__.m
+share/octave/%%OCTAVE_VERSION%%/m/control/system/__sysconcat__.m
+share/octave/%%OCTAVE_VERSION%%/m/control/system/__syscont_disc__.m
+share/octave/%%OCTAVE_VERSION%%/m/control/system/__sysdefioname__.m
+share/octave/%%OCTAVE_VERSION%%/m/control/system/__sysdefstname__.m
+share/octave/%%OCTAVE_VERSION%%/m/control/system/__sysgroupn__.m
+share/octave/%%OCTAVE_VERSION%%/m/control/system/__tf2sysl__.m
+share/octave/%%OCTAVE_VERSION%%/m/control/system/__tfl__.m
+share/octave/%%OCTAVE_VERSION%%/m/control/system/__zp2ssg2__.m
+share/octave/%%OCTAVE_VERSION%%/m/control/system/abcddim.m
+share/octave/%%OCTAVE_VERSION%%/m/control/system/buildssic.m
+share/octave/%%OCTAVE_VERSION%%/m/control/system/c2d.m
+share/octave/%%OCTAVE_VERSION%%/m/control/system/cellidx.m
+share/octave/%%OCTAVE_VERSION%%/m/control/system/d2c.m
+share/octave/%%OCTAVE_VERSION%%/m/control/system/dmr2d.m
+share/octave/%%OCTAVE_VERSION%%/m/control/system/fir2sys.m
+share/octave/%%OCTAVE_VERSION%%/m/control/system/is_abcd.m
+share/octave/%%OCTAVE_VERSION%%/m/control/system/is_controllable.m
+share/octave/%%OCTAVE_VERSION%%/m/control/system/is_detectable.m
+share/octave/%%OCTAVE_VERSION%%/m/control/system/is_digital.m
+share/octave/%%OCTAVE_VERSION%%/m/control/system/is_observable.m
+share/octave/%%OCTAVE_VERSION%%/m/control/system/is_sample.m
+share/octave/%%OCTAVE_VERSION%%/m/control/system/is_signal_list.m
+share/octave/%%OCTAVE_VERSION%%/m/control/system/is_siso.m
+share/octave/%%OCTAVE_VERSION%%/m/control/system/is_stabilizable.m
+share/octave/%%OCTAVE_VERSION%%/m/control/system/is_stable.m
+share/octave/%%OCTAVE_VERSION%%/m/control/system/jet707.m
+share/octave/%%OCTAVE_VERSION%%/m/control/system/listidx.m
+share/octave/%%OCTAVE_VERSION%%/m/control/system/moddemo.m
+share/octave/%%OCTAVE_VERSION%%/m/control/system/ord2.m
+share/octave/%%OCTAVE_VERSION%%/m/control/system/packedform.m
+share/octave/%%OCTAVE_VERSION%%/m/control/system/parallel.m
+share/octave/%%OCTAVE_VERSION%%/m/control/system/ss.m
+share/octave/%%OCTAVE_VERSION%%/m/control/system/ss2sys.m
+share/octave/%%OCTAVE_VERSION%%/m/control/system/ss2tf.m
+share/octave/%%OCTAVE_VERSION%%/m/control/system/ss2zp.m
+share/octave/%%OCTAVE_VERSION%%/m/control/system/starp.m
+share/octave/%%OCTAVE_VERSION%%/m/control/system/sys2fir.m
+share/octave/%%OCTAVE_VERSION%%/m/control/system/sys2ss.m
+share/octave/%%OCTAVE_VERSION%%/m/control/system/sys2tf.m
+share/octave/%%OCTAVE_VERSION%%/m/control/system/sys2zp.m
+share/octave/%%OCTAVE_VERSION%%/m/control/system/sysadd.m
+share/octave/%%OCTAVE_VERSION%%/m/control/system/sysappend.m
+share/octave/%%OCTAVE_VERSION%%/m/control/system/syschtsam.m
+share/octave/%%OCTAVE_VERSION%%/m/control/system/sysconnect.m
+share/octave/%%OCTAVE_VERSION%%/m/control/system/syscont.m
+share/octave/%%OCTAVE_VERSION%%/m/control/system/sysdimensions.m
+share/octave/%%OCTAVE_VERSION%%/m/control/system/sysdisc.m
+share/octave/%%OCTAVE_VERSION%%/m/control/system/sysdup.m
+share/octave/%%OCTAVE_VERSION%%/m/control/system/sysgetsignals.m
+share/octave/%%OCTAVE_VERSION%%/m/control/system/sysgettsam.m
+share/octave/%%OCTAVE_VERSION%%/m/control/system/sysgettype.m
+share/octave/%%OCTAVE_VERSION%%/m/control/system/sysgroup.m
+share/octave/%%OCTAVE_VERSION%%/m/control/system/sysidx.m
+share/octave/%%OCTAVE_VERSION%%/m/control/system/sysmin.m
+share/octave/%%OCTAVE_VERSION%%/m/control/system/sysmult.m
+share/octave/%%OCTAVE_VERSION%%/m/control/system/sysout.m
+share/octave/%%OCTAVE_VERSION%%/m/control/system/sysprune.m
+share/octave/%%OCTAVE_VERSION%%/m/control/system/sysreorder.m
+share/octave/%%OCTAVE_VERSION%%/m/control/system/sysrepdemo.m
+share/octave/%%OCTAVE_VERSION%%/m/control/system/sysscale.m
+share/octave/%%OCTAVE_VERSION%%/m/control/system/syssetsignals.m
+share/octave/%%OCTAVE_VERSION%%/m/control/system/syssub.m
+share/octave/%%OCTAVE_VERSION%%/m/control/system/sysupdate.m
+share/octave/%%OCTAVE_VERSION%%/m/control/system/tf.m
+share/octave/%%OCTAVE_VERSION%%/m/control/system/tf2ss.m
+share/octave/%%OCTAVE_VERSION%%/m/control/system/tf2sys.m
+share/octave/%%OCTAVE_VERSION%%/m/control/system/tf2zp.m
+share/octave/%%OCTAVE_VERSION%%/m/control/system/tfout.m
+share/octave/%%OCTAVE_VERSION%%/m/control/system/ugain.m
+share/octave/%%OCTAVE_VERSION%%/m/control/system/zp.m
+share/octave/%%OCTAVE_VERSION%%/m/control/system/zp2ss.m
+share/octave/%%OCTAVE_VERSION%%/m/control/system/zp2sys.m
+share/octave/%%OCTAVE_VERSION%%/m/control/system/zp2tf.m
+share/octave/%%OCTAVE_VERSION%%/m/control/system/zpout.m
+share/octave/%%OCTAVE_VERSION%%/m/control/util/__outlist__.m
+share/octave/%%OCTAVE_VERSION%%/m/control/util/__zgpbal__.m
+share/octave/%%OCTAVE_VERSION%%/m/control/util/axis2dlim.m
+share/octave/%%OCTAVE_VERSION%%/m/control/util/prompt.m
+share/octave/%%OCTAVE_VERSION%%/m/control/util/run_cmd.m
+share/octave/%%OCTAVE_VERSION%%/m/control/util/sortcom.m
+share/octave/%%OCTAVE_VERSION%%/m/control/util/strappend.m
+share/octave/%%OCTAVE_VERSION%%/m/control/util/swap.m
+share/octave/%%OCTAVE_VERSION%%/m/control/util/zgfmul.m
+share/octave/%%OCTAVE_VERSION%%/m/control/util/zgfslv.m
+share/octave/%%OCTAVE_VERSION%%/m/control/util/zginit.m
+share/octave/%%OCTAVE_VERSION%%/m/control/util/zgreduce.m
+share/octave/%%OCTAVE_VERSION%%/m/control/util/zgrownorm.m
+share/octave/%%OCTAVE_VERSION%%/m/control/util/zgscal.m
+share/octave/%%OCTAVE_VERSION%%/m/control/util/zgsgiv.m
+share/octave/%%OCTAVE_VERSION%%/m/control/util/zgshsr.m
+share/octave/%%OCTAVE_VERSION%%/m/deprecated/beta_cdf.m
+share/octave/%%OCTAVE_VERSION%%/m/deprecated/beta_inv.m
+share/octave/%%OCTAVE_VERSION%%/m/deprecated/beta_pdf.m
+share/octave/%%OCTAVE_VERSION%%/m/deprecated/beta_rnd.m
+share/octave/%%OCTAVE_VERSION%%/m/deprecated/binomial_cdf.m
+share/octave/%%OCTAVE_VERSION%%/m/deprecated/binomial_inv.m
+share/octave/%%OCTAVE_VERSION%%/m/deprecated/binomial_pdf.m
+share/octave/%%OCTAVE_VERSION%%/m/deprecated/binomial_rnd.m
+share/octave/%%OCTAVE_VERSION%%/m/deprecated/chisquare_cdf.m
+share/octave/%%OCTAVE_VERSION%%/m/deprecated/chisquare_inv.m
+share/octave/%%OCTAVE_VERSION%%/m/deprecated/chisquare_pdf.m
+share/octave/%%OCTAVE_VERSION%%/m/deprecated/chisquare_rnd.m
+share/octave/%%OCTAVE_VERSION%%/m/deprecated/clearplot.m
+share/octave/%%OCTAVE_VERSION%%/m/deprecated/clg.m
+share/octave/%%OCTAVE_VERSION%%/m/deprecated/com2str.m
+share/octave/%%OCTAVE_VERSION%%/m/deprecated/exponential_cdf.m
+share/octave/%%OCTAVE_VERSION%%/m/deprecated/exponential_inv.m
+share/octave/%%OCTAVE_VERSION%%/m/deprecated/exponential_pdf.m
+share/octave/%%OCTAVE_VERSION%%/m/deprecated/exponential_rnd.m
+share/octave/%%OCTAVE_VERSION%%/m/deprecated/f_cdf.m
+share/octave/%%OCTAVE_VERSION%%/m/deprecated/f_inv.m
+share/octave/%%OCTAVE_VERSION%%/m/deprecated/f_pdf.m
+share/octave/%%OCTAVE_VERSION%%/m/deprecated/f_rnd.m
+share/octave/%%OCTAVE_VERSION%%/m/deprecated/gamma_cdf.m
+share/octave/%%OCTAVE_VERSION%%/m/deprecated/gamma_inv.m
+share/octave/%%OCTAVE_VERSION%%/m/deprecated/gamma_pdf.m
+share/octave/%%OCTAVE_VERSION%%/m/deprecated/gamma_rnd.m
+share/octave/%%OCTAVE_VERSION%%/m/deprecated/geometric_cdf.m
+share/octave/%%OCTAVE_VERSION%%/m/deprecated/geometric_inv.m
+share/octave/%%OCTAVE_VERSION%%/m/deprecated/geometric_pdf.m
+share/octave/%%OCTAVE_VERSION%%/m/deprecated/geometric_rnd.m
+share/octave/%%OCTAVE_VERSION%%/m/deprecated/hypergeometric_cdf.m
+share/octave/%%OCTAVE_VERSION%%/m/deprecated/hypergeometric_inv.m
+share/octave/%%OCTAVE_VERSION%%/m/deprecated/hypergeometric_pdf.m
+share/octave/%%OCTAVE_VERSION%%/m/deprecated/hypergeometric_rnd.m
+share/octave/%%OCTAVE_VERSION%%/m/deprecated/intersection.m
+share/octave/%%OCTAVE_VERSION%%/m/deprecated/is_bool.m
+share/octave/%%OCTAVE_VERSION%%/m/deprecated/is_complex.m
+share/octave/%%OCTAVE_VERSION%%/m/deprecated/is_list.m
+share/octave/%%OCTAVE_VERSION%%/m/deprecated/is_matrix.m
+share/octave/%%OCTAVE_VERSION%%/m/deprecated/is_scalar.m
+share/octave/%%OCTAVE_VERSION%%/m/deprecated/is_square.m
+share/octave/%%OCTAVE_VERSION%%/m/deprecated/is_stream.m
+share/octave/%%OCTAVE_VERSION%%/m/deprecated/is_struct.m
+share/octave/%%OCTAVE_VERSION%%/m/deprecated/is_symmetric.m
+share/octave/%%OCTAVE_VERSION%%/m/deprecated/is_vector.m
+share/octave/%%OCTAVE_VERSION%%/m/deprecated/isstr.m
+share/octave/%%OCTAVE_VERSION%%/m/deprecated/lognormal_cdf.m
+share/octave/%%OCTAVE_VERSION%%/m/deprecated/lognormal_inv.m
+share/octave/%%OCTAVE_VERSION%%/m/deprecated/lognormal_pdf.m
+share/octave/%%OCTAVE_VERSION%%/m/deprecated/lognormal_rnd.m
+share/octave/%%OCTAVE_VERSION%%/m/deprecated/meshdom.m
+share/octave/%%OCTAVE_VERSION%%/m/deprecated/normal_cdf.m
+share/octave/%%OCTAVE_VERSION%%/m/deprecated/normal_inv.m
+share/octave/%%OCTAVE_VERSION%%/m/deprecated/normal_pdf.m
+share/octave/%%OCTAVE_VERSION%%/m/deprecated/normal_rnd.m
+share/octave/%%OCTAVE_VERSION%%/m/deprecated/pascal_cdf.m
+share/octave/%%OCTAVE_VERSION%%/m/deprecated/pascal_inv.m
+share/octave/%%OCTAVE_VERSION%%/m/deprecated/pascal_pdf.m
+share/octave/%%OCTAVE_VERSION%%/m/deprecated/pascal_rnd.m
+share/octave/%%OCTAVE_VERSION%%/m/deprecated/poisson_cdf.m
+share/octave/%%OCTAVE_VERSION%%/m/deprecated/poisson_inv.m
+share/octave/%%OCTAVE_VERSION%%/m/deprecated/poisson_pdf.m
+share/octave/%%OCTAVE_VERSION%%/m/deprecated/poisson_rnd.m
+share/octave/%%OCTAVE_VERSION%%/m/deprecated/polyinteg.m
+share/octave/%%OCTAVE_VERSION%%/m/deprecated/setstr.m
+share/octave/%%OCTAVE_VERSION%%/m/deprecated/struct_contains.m
+share/octave/%%OCTAVE_VERSION%%/m/deprecated/struct_elements.m
+share/octave/%%OCTAVE_VERSION%%/m/deprecated/t_cdf.m
+share/octave/%%OCTAVE_VERSION%%/m/deprecated/t_inv.m
+share/octave/%%OCTAVE_VERSION%%/m/deprecated/t_pdf.m
+share/octave/%%OCTAVE_VERSION%%/m/deprecated/t_rnd.m
+share/octave/%%OCTAVE_VERSION%%/m/deprecated/uniform_cdf.m
+share/octave/%%OCTAVE_VERSION%%/m/deprecated/uniform_inv.m
+share/octave/%%OCTAVE_VERSION%%/m/deprecated/uniform_pdf.m
+share/octave/%%OCTAVE_VERSION%%/m/deprecated/uniform_rnd.m
+share/octave/%%OCTAVE_VERSION%%/m/deprecated/weibcdf.m
+share/octave/%%OCTAVE_VERSION%%/m/deprecated/weibinv.m
+share/octave/%%OCTAVE_VERSION%%/m/deprecated/weibpdf.m
+share/octave/%%OCTAVE_VERSION%%/m/deprecated/weibrnd.m
+share/octave/%%OCTAVE_VERSION%%/m/deprecated/weibull_cdf.m
+share/octave/%%OCTAVE_VERSION%%/m/deprecated/weibull_inv.m
+share/octave/%%OCTAVE_VERSION%%/m/deprecated/weibull_pdf.m
+share/octave/%%OCTAVE_VERSION%%/m/deprecated/weibull_rnd.m
+share/octave/%%OCTAVE_VERSION%%/m/deprecated/wiener_rnd.m
+share/octave/%%OCTAVE_VERSION%%/m/elfun/acosd.m
+share/octave/%%OCTAVE_VERSION%%/m/elfun/acot.m
+share/octave/%%OCTAVE_VERSION%%/m/elfun/acotd.m
+share/octave/%%OCTAVE_VERSION%%/m/elfun/acoth.m
+share/octave/%%OCTAVE_VERSION%%/m/elfun/acsc.m
+share/octave/%%OCTAVE_VERSION%%/m/elfun/acscd.m
+share/octave/%%OCTAVE_VERSION%%/m/elfun/acsch.m
+share/octave/%%OCTAVE_VERSION%%/m/elfun/asec.m
+share/octave/%%OCTAVE_VERSION%%/m/elfun/asecd.m
+share/octave/%%OCTAVE_VERSION%%/m/elfun/asech.m
+share/octave/%%OCTAVE_VERSION%%/m/elfun/asind.m
+share/octave/%%OCTAVE_VERSION%%/m/elfun/atand.m
+share/octave/%%OCTAVE_VERSION%%/m/elfun/cosd.m
+share/octave/%%OCTAVE_VERSION%%/m/elfun/cot.m
+share/octave/%%OCTAVE_VERSION%%/m/elfun/cotd.m
+share/octave/%%OCTAVE_VERSION%%/m/elfun/coth.m
+share/octave/%%OCTAVE_VERSION%%/m/elfun/csc.m
+share/octave/%%OCTAVE_VERSION%%/m/elfun/cscd.m
+share/octave/%%OCTAVE_VERSION%%/m/elfun/csch.m
+share/octave/%%OCTAVE_VERSION%%/m/elfun/lcm.m
+share/octave/%%OCTAVE_VERSION%%/m/elfun/sec.m
+share/octave/%%OCTAVE_VERSION%%/m/elfun/secd.m
+share/octave/%%OCTAVE_VERSION%%/m/elfun/sech.m
+share/octave/%%OCTAVE_VERSION%%/m/elfun/sind.m
+share/octave/%%OCTAVE_VERSION%%/m/elfun/tand.m
+share/octave/%%OCTAVE_VERSION%%/m/finance/fv.m
+share/octave/%%OCTAVE_VERSION%%/m/finance/fvl.m
+share/octave/%%OCTAVE_VERSION%%/m/finance/irr.m
+share/octave/%%OCTAVE_VERSION%%/m/finance/nper.m
+share/octave/%%OCTAVE_VERSION%%/m/finance/npv.m
+share/octave/%%OCTAVE_VERSION%%/m/finance/pmt.m
+share/octave/%%OCTAVE_VERSION%%/m/finance/pv.m
+share/octave/%%OCTAVE_VERSION%%/m/finance/pvl.m
+share/octave/%%OCTAVE_VERSION%%/m/finance/rate.m
+share/octave/%%OCTAVE_VERSION%%/m/finance/vol.m
+share/octave/%%OCTAVE_VERSION%%/m/general/__isequal__.m
+share/octave/%%OCTAVE_VERSION%%/m/general/__splinen__.m
+share/octave/%%OCTAVE_VERSION%%/m/general/accumarray.m
+share/octave/%%OCTAVE_VERSION%%/m/general/celldisp.m
+share/octave/%%OCTAVE_VERSION%%/m/general/del2.m
+share/octave/%%OCTAVE_VERSION%%/m/general/interp3.m
+share/octave/%%OCTAVE_VERSION%%/m/general/interpn.m
+share/octave/%%OCTAVE_VERSION%%/m/general/rat.m
+share/octave/%%OCTAVE_VERSION%%/m/general/structfun.m
+share/octave/%%OCTAVE_VERSION%%/m/general/arrayfun.m
+share/octave/%%OCTAVE_VERSION%%/m/general/bicubic.m
+share/octave/%%OCTAVE_VERSION%%/m/general/bitcmp.m
+share/octave/%%OCTAVE_VERSION%%/m/general/bitget.m
+share/octave/%%OCTAVE_VERSION%%/m/general/bitset.m
+share/octave/%%OCTAVE_VERSION%%/m/general/blkdiag.m
+share/octave/%%OCTAVE_VERSION%%/m/general/cart2pol.m
+share/octave/%%OCTAVE_VERSION%%/m/general/cart2sph.m
+share/octave/%%OCTAVE_VERSION%%/m/general/cell2mat.m
+share/octave/%%OCTAVE_VERSION%%/m/general/circshift.m
+share/octave/%%OCTAVE_VERSION%%/m/general/common_size.m
+share/octave/%%OCTAVE_VERSION%%/m/general/cplxpair.m
+share/octave/%%OCTAVE_VERSION%%/m/general/cumtrapz.m
+share/octave/%%OCTAVE_VERSION%%/m/general/deal.m
+share/octave/%%OCTAVE_VERSION%%/m/general/diff.m
+share/octave/%%OCTAVE_VERSION%%/m/general/flipdim.m
+share/octave/%%OCTAVE_VERSION%%/m/general/fliplr.m
+share/octave/%%OCTAVE_VERSION%%/m/general/flipud.m
+share/octave/%%OCTAVE_VERSION%%/m/general/gradient.m
+share/octave/%%OCTAVE_VERSION%%/m/general/ind2sub.m
+share/octave/%%OCTAVE_VERSION%%/m/general/int2str.m
+share/octave/%%OCTAVE_VERSION%%/m/general/interp1.m
+share/octave/%%OCTAVE_VERSION%%/m/general/interp2.m
+share/octave/%%OCTAVE_VERSION%%/m/general/interpft.m
+share/octave/%%OCTAVE_VERSION%%/m/general/is_duplicate_entry.m
+share/octave/%%OCTAVE_VERSION%%/m/general/isa.m
+share/octave/%%OCTAVE_VERSION%%/m/general/isdefinite.m
+share/octave/%%OCTAVE_VERSION%%/m/general/isdir.m
+share/octave/%%OCTAVE_VERSION%%/m/general/isequal.m
+share/octave/%%OCTAVE_VERSION%%/m/general/isequalwithequalnans.m
+share/octave/%%OCTAVE_VERSION%%/m/general/isscalar.m
+share/octave/%%OCTAVE_VERSION%%/m/general/issquare.m
+share/octave/%%OCTAVE_VERSION%%/m/general/issymmetric.m
+share/octave/%%OCTAVE_VERSION%%/m/general/isvector.m
+share/octave/%%OCTAVE_VERSION%%/m/general/logical.m
+share/octave/%%OCTAVE_VERSION%%/m/general/logspace.m
+share/octave/%%OCTAVE_VERSION%%/m/general/lookup.m
+share/octave/%%OCTAVE_VERSION%%/m/general/mod.m
+share/octave/%%OCTAVE_VERSION%%/m/general/nargchk.m
+share/octave/%%OCTAVE_VERSION%%/m/general/nextpow2.m
+share/octave/%%OCTAVE_VERSION%%/m/general/nthroot.m
+share/octave/%%OCTAVE_VERSION%%/m/general/num2str.m
+share/octave/%%OCTAVE_VERSION%%/m/general/perror.m
+share/octave/%%OCTAVE_VERSION%%/m/general/pol2cart.m
+share/octave/%%OCTAVE_VERSION%%/m/general/polyarea.m
+share/octave/%%OCTAVE_VERSION%%/m/general/postpad.m
+share/octave/%%OCTAVE_VERSION%%/m/general/prepad.m
+share/octave/%%OCTAVE_VERSION%%/m/general/quadl.m
+share/octave/%%OCTAVE_VERSION%%/m/general/randperm.m
+share/octave/%%OCTAVE_VERSION%%/m/general/rem.m
+share/octave/%%OCTAVE_VERSION%%/m/general/repmat.m
+share/octave/%%OCTAVE_VERSION%%/m/general/rot90.m
+share/octave/%%OCTAVE_VERSION%%/m/general/rotdim.m
+share/octave/%%OCTAVE_VERSION%%/m/general/shift.m
+share/octave/%%OCTAVE_VERSION%%/m/general/shiftdim.m
+share/octave/%%OCTAVE_VERSION%%/m/general/sortrows.m
+share/octave/%%OCTAVE_VERSION%%/m/general/sph2cart.m
+share/octave/%%OCTAVE_VERSION%%/m/general/strerror.m
+share/octave/%%OCTAVE_VERSION%%/m/general/sub2ind.m
+share/octave/%%OCTAVE_VERSION%%/m/general/trapz.m
+share/octave/%%OCTAVE_VERSION%%/m/general/tril.m
+share/octave/%%OCTAVE_VERSION%%/m/general/triu.m
+share/octave/%%OCTAVE_VERSION%%/m/geometry/convhull.m
+share/octave/%%OCTAVE_VERSION%%/m/geometry/delaunay.m
+share/octave/%%OCTAVE_VERSION%%/m/geometry/delaunay3.m
+share/octave/%%OCTAVE_VERSION%%/m/geometry/delaunayn.m
+share/octave/%%OCTAVE_VERSION%%/m/geometry/dsearch.m
+share/octave/%%OCTAVE_VERSION%%/m/geometry/dsearchn.m
+share/octave/%%OCTAVE_VERSION%%/m/geometry/griddata.m
+share/octave/%%OCTAVE_VERSION%%/m/geometry/griddata3.m
+share/octave/%%OCTAVE_VERSION%%/m/geometry/griddatan.m
+share/octave/%%OCTAVE_VERSION%%/m/geometry/inpolygon.m
+share/octave/%%OCTAVE_VERSION%%/m/geometry/trimesh.m
+share/octave/%%OCTAVE_VERSION%%/m/geometry/triplot.m
+share/octave/%%OCTAVE_VERSION%%/m/geometry/tsearchn.m
+share/octave/%%OCTAVE_VERSION%%/m/geometry/voronoi.m
+share/octave/%%OCTAVE_VERSION%%/m/geometry/voronoin.m
+share/octave/%%OCTAVE_VERSION%%/m/image/PKG_ADD
+share/octave/%%OCTAVE_VERSION%%/m/image/__img__.m
+share/octave/%%OCTAVE_VERSION%%/m/image/__img_via_file__.m
+share/octave/%%OCTAVE_VERSION%%/m/image/autumn.m
+share/octave/%%OCTAVE_VERSION%%/m/image/bone.m
+share/octave/%%OCTAVE_VERSION%%/m/image/brighten.m
+share/octave/%%OCTAVE_VERSION%%/m/image/cool.m
+share/octave/%%OCTAVE_VERSION%%/m/image/copper.m
+share/octave/%%OCTAVE_VERSION%%/m/image/flag.m
+share/octave/%%OCTAVE_VERSION%%/m/image/gmap40.m
+share/octave/%%OCTAVE_VERSION%%/m/image/hot.m
+share/octave/%%OCTAVE_VERSION%%/m/image/hsv.m
+share/octave/%%OCTAVE_VERSION%%/m/image/jet.m
+share/octave/%%OCTAVE_VERSION%%/m/image/pink.m
+share/octave/%%OCTAVE_VERSION%%/m/image/prism.m
+share/octave/%%OCTAVE_VERSION%%/m/image/rainbow.m
+share/octave/%%OCTAVE_VERSION%%/m/image/spring.m
+share/octave/%%OCTAVE_VERSION%%/m/image/summer.m
+share/octave/%%OCTAVE_VERSION%%/m/image/white.m
+share/octave/%%OCTAVE_VERSION%%/m/image/winter.m
+share/octave/%%OCTAVE_VERSION%%/m/image/colormap.m
+share/octave/%%OCTAVE_VERSION%%/m/image/gray.m
+share/octave/%%OCTAVE_VERSION%%/m/image/gray2ind.m
+share/octave/%%OCTAVE_VERSION%%/m/image/hsv2rgb.m
+share/octave/%%OCTAVE_VERSION%%/m/image/image.m
+share/octave/%%OCTAVE_VERSION%%/m/image/image_viewer.m
+share/octave/%%OCTAVE_VERSION%%/m/image/imagesc.m
+share/octave/%%OCTAVE_VERSION%%/m/image/imshow.m
+share/octave/%%OCTAVE_VERSION%%/m/image/ind2gray.m
+share/octave/%%OCTAVE_VERSION%%/m/image/ind2rgb.m
+share/octave/%%OCTAVE_VERSION%%/m/image/loadimage.m
+share/octave/%%OCTAVE_VERSION%%/m/image/ntsc2rgb.m
+share/octave/%%OCTAVE_VERSION%%/m/image/ocean.m
+share/octave/%%OCTAVE_VERSION%%/m/image/rgb2hsv.m
+share/octave/%%OCTAVE_VERSION%%/m/image/rgb2ind.m
+share/octave/%%OCTAVE_VERSION%%/m/image/rgb2ntsc.m
+share/octave/%%OCTAVE_VERSION%%/m/image/saveimage.m
+share/octave/%%OCTAVE_VERSION%%/m/io/beep.m
+share/octave/%%OCTAVE_VERSION%%/m/linear-algebra/__norm__.m
+share/octave/%%OCTAVE_VERSION%%/m/linear-algebra/commutation_matrix.m
+share/octave/%%OCTAVE_VERSION%%/m/linear-algebra/cond.m
+share/octave/%%OCTAVE_VERSION%%/m/linear-algebra/condest.m
+share/octave/%%OCTAVE_VERSION%%/m/linear-algebra/cross.m
+share/octave/%%OCTAVE_VERSION%%/m/linear-algebra/dmult.m
+share/octave/%%OCTAVE_VERSION%%/m/linear-algebra/dot.m
+share/octave/%%OCTAVE_VERSION%%/m/linear-algebra/duplication_matrix.m
+share/octave/%%OCTAVE_VERSION%%/m/linear-algebra/housh.m
+share/octave/%%OCTAVE_VERSION%%/m/linear-algebra/krylov.m
+share/octave/%%OCTAVE_VERSION%%/m/linear-algebra/krylovb.m
+share/octave/%%OCTAVE_VERSION%%/m/linear-algebra/logm.m
+share/octave/%%OCTAVE_VERSION%%/m/linear-algebra/null.m
+share/octave/%%OCTAVE_VERSION%%/m/linear-algebra/orth.m
+share/octave/%%OCTAVE_VERSION%%/m/linear-algebra/onenormest.m
+share/octave/%%OCTAVE_VERSION%%/m/linear-algebra/qzhess.m
+share/octave/%%OCTAVE_VERSION%%/m/linear-algebra/rank.m
+share/octave/%%OCTAVE_VERSION%%/m/linear-algebra/rref.m
+share/octave/%%OCTAVE_VERSION%%/m/linear-algebra/trace.m
+share/octave/%%OCTAVE_VERSION%%/m/linear-algebra/vec.m
+share/octave/%%OCTAVE_VERSION%%/m/linear-algebra/vech.m
+share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/PKG_ADD
+share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/ans.m
+share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/bincoeff.m
+share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/bug_report.m
+share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/bunzip2.m
+share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/cast.m
+share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/comma.m
+share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/compare_versions.m
+share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/computer.m
+share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/copyfile.m
+share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/delete.m
+share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/dir.m
+share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/doc.m
+share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/dos.m
+share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/dump_prefs.m
+share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/edit.m
+share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/fileattrib.m
+share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/fileparts.m
+share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/flops.m
+share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/fullfile.m
+share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/getfield.m
+share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/gunzip.m
+share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/inputname.m
+share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/ismac.m
+share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/ispc.m
+share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/isunix.m
+share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/license.m
+share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/list_primes.m
+share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/ls.m
+share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/ls_command.m
+share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/menu.m
+share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/mex.m
+share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/mexext.m
+share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/mkoctfile.m
+share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/movefile.m
+share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/news.m
+share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/orderfields.m
+share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/pack.m
+share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/paren.m
+share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/parseparams.m
+share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/semicolon.m
+share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/setfield.m
+share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/single.m
+share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/substruct.m
+share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/tar.m
+share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/tempdir.m
+share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/tempname.m
+share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/texas_lotto.m
+share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/unix.m
+share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/unpack.m
+share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/untar.m
+share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/unzip.m
+share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/gzip.m
+share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/run.m
+share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/ver.m
+share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/version.m
+share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/swapbytes.m
+share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/warning_ids.m
+share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/what.m
+share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/xor.m
+share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/zip.m
+share/octave/%%OCTAVE_VERSION%%/m/optimization/__fsolve_defopts__.m
+share/octave/%%OCTAVE_VERSION%%/m/optimization/glpk.m
+share/octave/%%OCTAVE_VERSION%%/m/optimization/glpkmex.m
+share/octave/%%OCTAVE_VERSION%%/m/optimization/optimset.m
+share/octave/%%OCTAVE_VERSION%%/m/optimization/qp.m
+share/octave/%%OCTAVE_VERSION%%/m/optimization/sqp.m
+share/octave/%%OCTAVE_VERSION%%/m/path/savepath.m
+share/octave/%%OCTAVE_VERSION%%/m/pkg/PKG_ADD
+share/octave/%%OCTAVE_VERSION%%/m/pkg/pkg.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/PKG_ADD
+share/octave/%%OCTAVE_VERSION%%/m/plot/__patch__.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/__area__.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/__axes_limits__.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/__bars__.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/__contour__.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/__quiver__.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/__scatter__.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/__stem__.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/ancestor.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/meshc.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/patch.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/peaks.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/__axis_label__.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/__bar__.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/__default_plot_options__.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/__errcomm__.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/__errplot__.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/__gnuplot_version__.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/__go_close_all__.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/__go_draw_axes__.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/__go_draw_figure__.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/__line__.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/__next_line_color__.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/__plr1__.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/__plr2__.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/__plt1__.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/__plt2__.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/__plt2mm__.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/__plt2mv__.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/__plt2ss__.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/__plt2vm__.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/__plt2vv__.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/__plt__.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/__plt_get_axis_arg__.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/__pltopt1__.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/__pltopt__.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/axes.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/axis.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/bar.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/barh.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/box.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/clf.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/compass.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/ellipsoid.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/feather.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/rose.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/close.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/closereq.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/contour.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/contourc.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/drawnow.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/errorbar.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/figure.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/fplot.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/gca.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/gcf.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/grid.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/hist.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/hold.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/isfigure.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/ishold.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/legend.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/line.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/loglog.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/loglogerr.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/mesh.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/meshgrid.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/ndgrid.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/newplot.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/orient.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/plot.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/plot3.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/polar.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/print.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/replot.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/semilogx.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/semilogxerr.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/semilogy.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/semilogyerr.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/shg.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/sombrero.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/stairs.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/stem.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/subplot.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/text.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/title.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/view.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/xlabel.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/ylabel.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/zlabel.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/area.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/caxis.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/colorbar.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/contour3.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/contourf.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/cylinder.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/fill.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/findobj.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/hidden.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/meshz.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/pareto.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/pcolor.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/pie.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/plotyy.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/quiver.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/quiver3.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/ribbon.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/scatter.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/scatter3.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/shading.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/slice.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/sphere.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/spinmap.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/stem3.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/surf.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/surface.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/surfc.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/surfnorm.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/xlim.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/ylim.m
+share/octave/%%OCTAVE_VERSION%%/m/plot/zlim.m
+share/octave/%%OCTAVE_VERSION%%/m/polynomial/mpoles.m
+share/octave/%%OCTAVE_VERSION%%/m/polynomial/compan.m
+share/octave/%%OCTAVE_VERSION%%/m/polynomial/conv.m
+share/octave/%%OCTAVE_VERSION%%/m/polynomial/deconv.m
+share/octave/%%OCTAVE_VERSION%%/m/polynomial/mkpp.m
+share/octave/%%OCTAVE_VERSION%%/m/polynomial/pchip.m
+share/octave/%%OCTAVE_VERSION%%/m/polynomial/poly.m
+share/octave/%%OCTAVE_VERSION%%/m/polynomial/polyder.m
+share/octave/%%OCTAVE_VERSION%%/m/polynomial/polyderiv.m
+share/octave/%%OCTAVE_VERSION%%/m/polynomial/polyfit.m
+share/octave/%%OCTAVE_VERSION%%/m/polynomial/polygcd.m
+share/octave/%%OCTAVE_VERSION%%/m/polynomial/polyint.m
+share/octave/%%OCTAVE_VERSION%%/m/polynomial/polyout.m
+share/octave/%%OCTAVE_VERSION%%/m/polynomial/polyreduce.m
+share/octave/%%OCTAVE_VERSION%%/m/polynomial/polyval.m
+share/octave/%%OCTAVE_VERSION%%/m/polynomial/polyvalm.m
+share/octave/%%OCTAVE_VERSION%%/m/polynomial/ppval.m
+share/octave/%%OCTAVE_VERSION%%/m/polynomial/residue.m
+share/octave/%%OCTAVE_VERSION%%/m/polynomial/roots.m
+share/octave/%%OCTAVE_VERSION%%/m/polynomial/spline.m
+share/octave/%%OCTAVE_VERSION%%/m/polynomial/unmkpp.m
+share/octave/%%OCTAVE_VERSION%%/m/quaternion/demoquat.m
+share/octave/%%OCTAVE_VERSION%%/m/quaternion/qconj.m
+share/octave/%%OCTAVE_VERSION%%/m/quaternion/qcoordinate_plot.m
+share/octave/%%OCTAVE_VERSION%%/m/quaternion/qderiv.m
+share/octave/%%OCTAVE_VERSION%%/m/quaternion/qderivmat.m
+share/octave/%%OCTAVE_VERSION%%/m/quaternion/qinv.m
+share/octave/%%OCTAVE_VERSION%%/m/quaternion/qmult.m
+share/octave/%%OCTAVE_VERSION%%/m/quaternion/qtrans.m
+share/octave/%%OCTAVE_VERSION%%/m/quaternion/qtransv.m
+share/octave/%%OCTAVE_VERSION%%/m/quaternion/qtransvmat.m
+share/octave/%%OCTAVE_VERSION%%/m/quaternion/quaternion.m
+share/octave/%%OCTAVE_VERSION%%/m/set/complement.m
+share/octave/%%OCTAVE_VERSION%%/m/set/create_set.m
+share/octave/%%OCTAVE_VERSION%%/m/set/intersect.m
+share/octave/%%OCTAVE_VERSION%%/m/set/ismember.m
+share/octave/%%OCTAVE_VERSION%%/m/set/setdiff.m
+share/octave/%%OCTAVE_VERSION%%/m/set/setxor.m
+share/octave/%%OCTAVE_VERSION%%/m/set/union.m
+share/octave/%%OCTAVE_VERSION%%/m/set/unique.m
+share/octave/%%OCTAVE_VERSION%%/m/signal/arch_fit.m
+share/octave/%%OCTAVE_VERSION%%/m/signal/arch_rnd.m
+share/octave/%%OCTAVE_VERSION%%/m/signal/arch_test.m
+share/octave/%%OCTAVE_VERSION%%/m/signal/arma_rnd.m
+share/octave/%%OCTAVE_VERSION%%/m/signal/autocor.m
+share/octave/%%OCTAVE_VERSION%%/m/signal/autocov.m
+share/octave/%%OCTAVE_VERSION%%/m/signal/autoreg_matrix.m
+share/octave/%%OCTAVE_VERSION%%/m/signal/bartlett.m
+share/octave/%%OCTAVE_VERSION%%/m/signal/blackman.m
+share/octave/%%OCTAVE_VERSION%%/m/signal/detrend.m
+share/octave/%%OCTAVE_VERSION%%/m/signal/diffpara.m
+share/octave/%%OCTAVE_VERSION%%/m/signal/durbinlevinson.m
+share/octave/%%OCTAVE_VERSION%%/m/signal/fftconv.m
+share/octave/%%OCTAVE_VERSION%%/m/signal/fftfilt.m
+share/octave/%%OCTAVE_VERSION%%/m/signal/fftshift.m
+share/octave/%%OCTAVE_VERSION%%/m/signal/filter2.m
+share/octave/%%OCTAVE_VERSION%%/m/signal/fractdiff.m
+share/octave/%%OCTAVE_VERSION%%/m/signal/freqz.m
+share/octave/%%OCTAVE_VERSION%%/m/signal/freqz_plot.m
+share/octave/%%OCTAVE_VERSION%%/m/signal/hamming.m
+share/octave/%%OCTAVE_VERSION%%/m/signal/hanning.m
+share/octave/%%OCTAVE_VERSION%%/m/signal/hurst.m
+share/octave/%%OCTAVE_VERSION%%/m/signal/ifftshift.m
+share/octave/%%OCTAVE_VERSION%%/m/signal/periodogram.m
+share/octave/%%OCTAVE_VERSION%%/m/signal/rectangle_lw.m
+share/octave/%%OCTAVE_VERSION%%/m/signal/rectangle_sw.m
+share/octave/%%OCTAVE_VERSION%%/m/signal/sinc.m
+share/octave/%%OCTAVE_VERSION%%/m/signal/sinetone.m
+share/octave/%%OCTAVE_VERSION%%/m/signal/sinewave.m
+share/octave/%%OCTAVE_VERSION%%/m/signal/spectral_adf.m
+share/octave/%%OCTAVE_VERSION%%/m/signal/spectral_xdf.m
+share/octave/%%OCTAVE_VERSION%%/m/signal/spencer.m
+share/octave/%%OCTAVE_VERSION%%/m/signal/stft.m
+share/octave/%%OCTAVE_VERSION%%/m/signal/synthesis.m
+share/octave/%%OCTAVE_VERSION%%/m/signal/triangle_lw.m
+share/octave/%%OCTAVE_VERSION%%/m/signal/triangle_sw.m
+share/octave/%%OCTAVE_VERSION%%/m/signal/unwrap.m
+share/octave/%%OCTAVE_VERSION%%/m/signal/yulewalker.m
+share/octave/%%OCTAVE_VERSION%%/m/sparse/colperm.m
+share/octave/%%OCTAVE_VERSION%%/m/sparse/etreeplot.m
+share/octave/%%OCTAVE_VERSION%%/m/sparse/gplot.m
+share/octave/%%OCTAVE_VERSION%%/m/sparse/nonzeros.m
+share/octave/%%OCTAVE_VERSION%%/m/sparse/normest.m
+share/octave/%%OCTAVE_VERSION%%/m/sparse/pcg.m
+share/octave/%%OCTAVE_VERSION%%/m/sparse/pcr.m
+share/octave/%%OCTAVE_VERSION%%/m/sparse/spalloc.m
+share/octave/%%OCTAVE_VERSION%%/m/sparse/spconvert.m
+share/octave/%%OCTAVE_VERSION%%/m/sparse/spdiags.m
+share/octave/%%OCTAVE_VERSION%%/m/sparse/speye.m
+share/octave/%%OCTAVE_VERSION%%/m/sparse/spfun.m
+share/octave/%%OCTAVE_VERSION%%/m/sparse/sphcat.m
+share/octave/%%OCTAVE_VERSION%%/m/sparse/spones.m
+share/octave/%%OCTAVE_VERSION%%/m/sparse/sprand.m
+share/octave/%%OCTAVE_VERSION%%/m/sparse/sprandn.m
+share/octave/%%OCTAVE_VERSION%%/m/sparse/sprandsym.m
+share/octave/%%OCTAVE_VERSION%%/m/sparse/spstats.m
+share/octave/%%OCTAVE_VERSION%%/m/sparse/spvcat.m
+share/octave/%%OCTAVE_VERSION%%/m/sparse/spy.m
+share/octave/%%OCTAVE_VERSION%%/m/sparse/treeplot.m
+share/octave/%%OCTAVE_VERSION%%/m/specfun/bessel.m
+share/octave/%%OCTAVE_VERSION%%/m/specfun/beta.m
+share/octave/%%OCTAVE_VERSION%%/m/specfun/betai.m
+share/octave/%%OCTAVE_VERSION%%/m/specfun/betaln.m
+share/octave/%%OCTAVE_VERSION%%/m/specfun/erfinv.m
+share/octave/%%OCTAVE_VERSION%%/m/specfun/factor.m
+share/octave/%%OCTAVE_VERSION%%/m/specfun/factorial.m
+share/octave/%%OCTAVE_VERSION%%/m/specfun/gammai.m
+share/octave/%%OCTAVE_VERSION%%/m/specfun/isprime.m
+share/octave/%%OCTAVE_VERSION%%/m/specfun/legendre.m
+share/octave/%%OCTAVE_VERSION%%/m/specfun/log2.m
+share/octave/%%OCTAVE_VERSION%%/m/specfun/nchoosek.m
+share/octave/%%OCTAVE_VERSION%%/m/specfun/perms.m
+share/octave/%%OCTAVE_VERSION%%/m/specfun/pow2.m
+share/octave/%%OCTAVE_VERSION%%/m/specfun/primes.m
+share/octave/%%OCTAVE_VERSION%%/m/special-matrix/hadamard.m
+share/octave/%%OCTAVE_VERSION%%/m/special-matrix/hankel.m
+share/octave/%%OCTAVE_VERSION%%/m/special-matrix/hilb.m
+share/octave/%%OCTAVE_VERSION%%/m/special-matrix/invhilb.m
+share/octave/%%OCTAVE_VERSION%%/m/special-matrix/magic.m
+share/octave/%%OCTAVE_VERSION%%/m/special-matrix/pascal.m
+share/octave/%%OCTAVE_VERSION%%/m/special-matrix/rosser.m
+share/octave/%%OCTAVE_VERSION%%/m/special-matrix/sylvester_matrix.m
+share/octave/%%OCTAVE_VERSION%%/m/special-matrix/toeplitz.m
+share/octave/%%OCTAVE_VERSION%%/m/special-matrix/vander.m
+share/octave/%%OCTAVE_VERSION%%/m/special-matrix/wilkinson.m
+share/octave/%%OCTAVE_VERSION%%/m/startup/inputrc
+share/octave/%%OCTAVE_VERSION%%/m/startup/octaverc
+share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/unidcdf.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/unidinv.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/unidpdf.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/base/center.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/base/cloglog.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/base/cor.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/base/corrcoef.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/base/cov.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/base/cut.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/base/gls.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/base/iqr.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/base/kendall.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/base/kurtosis.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/base/logit.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/base/mahalanobis.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/base/mean.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/base/meansq.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/base/median.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/base/mode.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/base/moment.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/base/ols.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/base/ppplot.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/base/probit.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/base/qqplot.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/base/range.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/base/ranks.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/base/run_count.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/base/skewness.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/base/spearman.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/base/statistics.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/base/std.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/base/studentize.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/base/table.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/base/values.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/base/var.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/betacdf.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/betainv.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/betapdf.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/betarnd.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/binocdf.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/binoinv.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/binopdf.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/binornd.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/cauchy_cdf.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/cauchy_inv.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/cauchy_pdf.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/cauchy_rnd.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/chi2cdf.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/chi2inv.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/chi2pdf.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/chi2rnd.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/discrete_cdf.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/discrete_inv.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/discrete_pdf.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/discrete_rnd.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/empirical_cdf.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/empirical_inv.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/empirical_pdf.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/empirical_rnd.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/expcdf.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/expinv.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/exppdf.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/exprnd.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/fcdf.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/finv.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/fpdf.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/frnd.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/gamcdf.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/gaminv.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/gampdf.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/gamrnd.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/geocdf.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/geoinv.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/geopdf.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/geornd.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/hygecdf.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/hygeinv.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/hygepdf.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/hygernd.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/kolmogorov_smirnov_cdf.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/laplace_cdf.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/laplace_inv.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/laplace_pdf.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/laplace_rnd.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/logistic_cdf.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/logistic_inv.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/logistic_pdf.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/logistic_rnd.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/logncdf.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/logninv.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/lognpdf.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/lognrnd.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/nbincdf.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/nbininv.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/nbinpdf.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/nbinrnd.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/normcdf.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/norminv.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/normpdf.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/normrnd.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/poisscdf.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/poissinv.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/poisspdf.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/poissrnd.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/stdnormal_cdf.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/stdnormal_inv.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/stdnormal_pdf.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/stdnormal_rnd.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/tcdf.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/tinv.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/tpdf.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/trnd.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/unidrnd.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/unifcdf.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/unifinv.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/unifpdf.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/unifrnd.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/wblcdf.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/wblinv.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/wblpdf.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/wblrnd.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/wienrnd.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/models/logistic_regression.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/models/logistic_regression_derivatives.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/models/logistic_regression_likelihood.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/tests/anova.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/tests/bartlett_test.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/tests/chisquare_test_homogeneity.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/tests/chisquare_test_independence.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/tests/cor_test.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/tests/f_test_regression.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/tests/hotelling_test.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/tests/hotelling_test_2.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/tests/kolmogorov_smirnov_test.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/tests/kolmogorov_smirnov_test_2.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/tests/kruskal_wallis_test.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/tests/manova.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/tests/mcnemar_test.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/tests/prop_test_2.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/tests/run_test.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/tests/sign_test.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/tests/t_test.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/tests/t_test_2.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/tests/t_test_regression.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/tests/u_test.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/tests/var_test.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/tests/welch_test.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/tests/wilcoxon_test.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/tests/z_test.m
+share/octave/%%OCTAVE_VERSION%%/m/statistics/tests/z_test_2.m
+share/octave/%%OCTAVE_VERSION%%/m/strings/strtrim.m
+share/octave/%%OCTAVE_VERSION%%/m/strings/base2dec.m
+share/octave/%%OCTAVE_VERSION%%/m/strings/bin2dec.m
+share/octave/%%OCTAVE_VERSION%%/m/strings/blanks.m
+share/octave/%%OCTAVE_VERSION%%/m/strings/deblank.m
+share/octave/%%OCTAVE_VERSION%%/m/strings/dec2base.m
+share/octave/%%OCTAVE_VERSION%%/m/strings/dec2bin.m
+share/octave/%%OCTAVE_VERSION%%/m/strings/dec2hex.m
+share/octave/%%OCTAVE_VERSION%%/m/strings/findstr.m
+share/octave/%%OCTAVE_VERSION%%/m/strings/hex2dec.m
+share/octave/%%OCTAVE_VERSION%%/m/strings/index.m
+share/octave/%%OCTAVE_VERSION%%/m/strings/isletter.m
+share/octave/%%OCTAVE_VERSION%%/m/strings/lower.m
+share/octave/%%OCTAVE_VERSION%%/m/strings/mat2str.m
+share/octave/%%OCTAVE_VERSION%%/m/strings/rindex.m
+share/octave/%%OCTAVE_VERSION%%/m/strings/split.m
+share/octave/%%OCTAVE_VERSION%%/m/strings/str2double.m
+share/octave/%%OCTAVE_VERSION%%/m/strings/str2mat.m
+share/octave/%%OCTAVE_VERSION%%/m/strings/str2num.m
+share/octave/%%OCTAVE_VERSION%%/m/strings/strcat.m
+share/octave/%%OCTAVE_VERSION%%/m/strings/strcmpi.m
+share/octave/%%OCTAVE_VERSION%%/m/strings/strfind.m
+share/octave/%%OCTAVE_VERSION%%/m/strings/strjust.m
+share/octave/%%OCTAVE_VERSION%%/m/strings/strmatch.m
+share/octave/%%OCTAVE_VERSION%%/m/strings/strncmpi.m
+share/octave/%%OCTAVE_VERSION%%/m/strings/strrep.m
+share/octave/%%OCTAVE_VERSION%%/m/strings/strtok.m
+share/octave/%%OCTAVE_VERSION%%/m/strings/strtrunc.m
+share/octave/%%OCTAVE_VERSION%%/m/strings/strvcat.m
+share/octave/%%OCTAVE_VERSION%%/m/strings/substr.m
+share/octave/%%OCTAVE_VERSION%%/m/strings/upper.m
+share/octave/%%OCTAVE_VERSION%%/m/testfun/PKG_ADD
+share/octave/%%OCTAVE_VERSION%%/m/testfun/assert.m
+share/octave/%%OCTAVE_VERSION%%/m/testfun/demo.m
+share/octave/%%OCTAVE_VERSION%%/m/testfun/example.m
+share/octave/%%OCTAVE_VERSION%%/m/testfun/fail.m
+share/octave/%%OCTAVE_VERSION%%/m/testfun/speed.m
+share/octave/%%OCTAVE_VERSION%%/m/testfun/test.m
+share/octave/%%OCTAVE_VERSION%%/m/time/asctime.m
+share/octave/%%OCTAVE_VERSION%%/m/time/calendar.m
+share/octave/%%OCTAVE_VERSION%%/m/time/clock.m
+share/octave/%%OCTAVE_VERSION%%/m/time/ctime.m
+share/octave/%%OCTAVE_VERSION%%/m/time/date.m
+share/octave/%%OCTAVE_VERSION%%/m/time/datenum.m
+share/octave/%%OCTAVE_VERSION%%/m/time/datestr.m
+share/octave/%%OCTAVE_VERSION%%/m/time/datevec.m
+share/octave/%%OCTAVE_VERSION%%/m/time/eomday.m
+share/octave/%%OCTAVE_VERSION%%/m/time/etime.m
+share/octave/%%OCTAVE_VERSION%%/m/time/is_leap_year.m
+share/octave/%%OCTAVE_VERSION%%/m/time/now.m
+share/octave/%%OCTAVE_VERSION%%/m/time/weekday.m
+share/octave/ls-R
+share/octave/site/m/startup/octaverc
+@dirrm share/octave/%%OCTAVE_VERSION%%/m/pkg
+@dirrm share/octave/%%OCTAVE_VERSION%%/m/time
+@dirrm share/octave/%%OCTAVE_VERSION%%/m/testfun
+@dirrm share/octave/%%OCTAVE_VERSION%%/m/strings
+@dirrm share/octave/%%OCTAVE_VERSION%%/m/statistics/tests
+@dirrm share/octave/%%OCTAVE_VERSION%%/m/statistics/models
+@dirrm share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions
+@dirrm share/octave/%%OCTAVE_VERSION%%/m/statistics/base
+@dirrm share/octave/%%OCTAVE_VERSION%%/m/statistics
+@dirrm share/octave/%%OCTAVE_VERSION%%/m/startup
+@dirrm share/octave/%%OCTAVE_VERSION%%/m/special-matrix
+@dirrm share/octave/%%OCTAVE_VERSION%%/m/specfun
+@dirrm share/octave/%%OCTAVE_VERSION%%/m/sparse
+@dirrm share/octave/%%OCTAVE_VERSION%%/m/signal
+@dirrm share/octave/%%OCTAVE_VERSION%%/m/set
+@dirrm share/octave/%%OCTAVE_VERSION%%/m/quaternion
+@dirrm share/octave/%%OCTAVE_VERSION%%/m/polynomial
+@dirrm share/octave/%%OCTAVE_VERSION%%/m/plot
+@dirrm share/octave/%%OCTAVE_VERSION%%/m/path
+@dirrm share/octave/%%OCTAVE_VERSION%%/m/optimization
+@dirrm share/octave/%%OCTAVE_VERSION%%/m/miscellaneous
+@dirrm share/octave/%%OCTAVE_VERSION%%/m/linear-algebra
+@dirrm share/octave/%%OCTAVE_VERSION%%/m/io
+@dirrm share/octave/%%OCTAVE_VERSION%%/m/image
+@dirrm share/octave/%%OCTAVE_VERSION%%/m/geometry
+@dirrm share/octave/%%OCTAVE_VERSION%%/m/general
+@dirrm share/octave/%%OCTAVE_VERSION%%/m/finance
+@dirrm share/octave/%%OCTAVE_VERSION%%/m/elfun
+@dirrm share/octave/%%OCTAVE_VERSION%%/m/deprecated
+@dirrm share/octave/%%OCTAVE_VERSION%%/m/control/util
+@dirrm share/octave/%%OCTAVE_VERSION%%/m/control/system
+@dirrm share/octave/%%OCTAVE_VERSION%%/m/control/obsolete
+@dirrm share/octave/%%OCTAVE_VERSION%%/m/control/hinf
+@dirrm share/octave/%%OCTAVE_VERSION%%/m/control/base
+@dirrm share/octave/%%OCTAVE_VERSION%%/m/control
+@dirrm share/octave/%%OCTAVE_VERSION%%/m/audio
+@dirrm share/octave/%%OCTAVE_VERSION%%/imagelib
+@dirrm share/octave/%%OCTAVE_VERSION%%/m
+@dirrm share/octave/%%OCTAVE_VERSION%%
+@dirrm share/octave/site/m/startup
+@dirrm share/octave/site/m
+@dirrm share/octave/site
+@dirrm share/octave
%%PORTDOCS%%%%DOCSDIR%%/Octave-FAQ.ps
%%PORTDOCS%%%%DOCSDIR%%/liboctave.ps
-%%PORTDOCS%%%%DOCSDIR%%/octave.ps
%%PORTDOCS%%%%DOCSDIR%%/refcard-a4.ps
%%PORTDOCS%%%%DOCSDIR%%/refcard-legal.ps
%%PORTDOCS%%%%DOCSDIR%%/refcard-letter.ps
-%%DATADIR%%/site/m/startup/octaverc
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/audio/lin2mu.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/audio/loadaudio.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/audio/mu2lin.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/audio/playaudio.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/audio/record.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/audio/saveaudio.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/audio/setaudio.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/base/DEMOcontrol.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/base/__bodquist__.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/base/__freqresp__.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/base/__stepimp__.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/base/analdemo.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/base/are.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/base/bddemo.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/base/bode.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/base/bode_bounds.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/base/controldemo.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/base/ctrb.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/base/damp.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/base/dare.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/base/dcgain.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/base/dgram.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/base/dkalman.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/base/dlqe.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/base/dlqr.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/base/dlyap.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/base/dre.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/base/frdemo.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/base/freqchkw.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/base/gram.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/base/impulse.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/base/lqe.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/base/lqg.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/base/lqr.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/base/lsim.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/base/ltifr.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/base/lyap.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/base/nichols.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/base/nyquist.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/base/obsv.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/base/place.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/base/pzmap.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/base/rldemo.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/base/rlocus.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/base/step.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/base/tzero.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/base/tzero2.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/hinf/dgkfdemo.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/hinf/dhinfdemo.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/hinf/h2norm.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/hinf/h2syn.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/hinf/hinf_ctr.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/hinf/hinfdemo.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/hinf/hinfnorm.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/hinf/hinfsyn.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/hinf/hinfsyn_chk.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/hinf/hinfsyn_ric.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/hinf/is_dgkf.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/hinf/wgt1o.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/obsolete/dezero.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/obsolete/dlqg.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/obsolete/minfo.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/obsolete/packsys.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/obsolete/qzval.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/obsolete/rotg.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/obsolete/series.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/obsolete/swapcols.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/obsolete/swaprows.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/obsolete/syschnames.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/obsolete/unpacksys.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/system/__abcddims__.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/system/__syschnamesl__.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/system/__sysconcat__.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/system/__syscont_disc__.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/system/__sysdefioname__.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/system/__sysdefstname__.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/system/__sysgroupn__.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/system/__tf2sysl__.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/system/__tfl__.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/system/__zp2ssg2__.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/system/abcddim.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/system/buildssic.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/system/c2d.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/system/cellidx.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/system/d2c.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/system/dmr2d.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/system/fir2sys.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/system/is_abcd.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/system/is_controllable.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/system/is_detectable.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/system/is_digital.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/system/is_observable.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/system/is_sample.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/system/is_signal_list.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/system/is_siso.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/system/is_stabilizable.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/system/is_stable.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/system/jet707.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/system/listidx.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/system/moddemo.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/system/ord2.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/system/packedform.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/system/parallel.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/system/ss.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/system/ss2sys.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/system/ss2tf.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/system/ss2zp.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/system/starp.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/system/sys2fir.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/system/sys2ss.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/system/sys2tf.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/system/sys2zp.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/system/sysadd.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/system/sysappend.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/system/syschtsam.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/system/sysconnect.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/system/syscont.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/system/sysdimensions.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/system/sysdisc.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/system/sysdup.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/system/sysgetsignals.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/system/sysgettsam.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/system/sysgettype.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/system/sysgroup.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/system/sysidx.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/system/sysmin.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/system/sysmult.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/system/sysout.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/system/sysprune.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/system/sysreorder.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/system/sysrepdemo.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/system/sysscale.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/system/syssetsignals.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/system/syssub.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/system/sysupdate.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/system/tf.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/system/tf2ss.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/system/tf2sys.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/system/tf2zp.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/system/tfout.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/system/ugain.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/system/zp.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/system/zp2ss.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/system/zp2sys.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/system/zp2tf.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/system/zpout.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/util/__outlist__.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/util/__zgpbal__.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/util/axis2dlim.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/util/prompt.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/util/run_cmd.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/util/sortcom.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/util/strappend.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/util/swap.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/util/zgfmul.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/util/zgfslv.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/util/zginit.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/util/zgreduce.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/util/zgrownorm.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/util/zgscal.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/util/zgsgiv.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/control/util/zgshsr.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/deprecated/com2str.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/deprecated/is_bool.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/deprecated/is_complex.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/deprecated/is_global.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/deprecated/is_list.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/deprecated/is_matrix.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/deprecated/is_scalar.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/deprecated/is_square.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/deprecated/is_stream.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/deprecated/is_struct.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/deprecated/is_symmetric.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/deprecated/is_vector.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/deprecated/isstr.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/deprecated/setstr.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/deprecated/struct_contains.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/deprecated/struct_elements.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/elfun/acot.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/elfun/acoth.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/elfun/acsc.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/elfun/acsch.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/elfun/asec.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/elfun/asech.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/elfun/cot.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/elfun/coth.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/elfun/csc.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/elfun/csch.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/elfun/lcm.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/elfun/sec.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/elfun/sech.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/finance/fv.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/finance/fvl.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/finance/irr.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/finance/nper.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/finance/npv.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/finance/pmt.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/finance/pv.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/finance/pvl.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/finance/rate.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/finance/vol.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/general/bitcmp.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/general/bitget.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/general/bitset.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/general/cart2pol.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/general/cart2sph.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/general/circshift.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/general/columns.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/general/common_size.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/general/deal.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/general/diff.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/general/flipdim.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/general/fliplr.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/general/flipud.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/general/ind2sub.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/general/int2str.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/general/is_duplicate_entry.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/general/isa.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/general/isdefinite.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/general/isscalar.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/general/issquare.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/general/issymmetric.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/general/isvector.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/general/logical.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/general/mod.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/general/logspace.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/general/nargchk.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/general/nextpow2.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/general/num2str.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/general/perror.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/general/pol2cart.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/general/postpad.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/general/prepad.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/general/randperm.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/general/rem.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/general/repmat.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/general/rot90.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/general/rotdim.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/general/rows.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/general/shift.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/general/shiftdim.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/general/sph2cart.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/general/strerror.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/general/sub2ind.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/general/tril.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/general/triu.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/image/colormap.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/image/gray.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/image/gray2ind.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/image/hsv2rgb.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/image/image.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/image/imagesc.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/image/imshow.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/image/ind2gray.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/image/ind2rgb.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/image/loadimage.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/image/ntsc2rgb.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/image/ocean.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/image/rgb2hsv.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/image/rgb2ind.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/image/rgb2ntsc.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/image/saveimage.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/io/beep.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/linear-algebra/commutation_matrix.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/linear-algebra/cond.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/linear-algebra/cross.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/linear-algebra/dmult.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/linear-algebra/dot.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/linear-algebra/duplication_matrix.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/linear-algebra/housh.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/linear-algebra/krylov.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/linear-algebra/krylovb.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/linear-algebra/logm.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/linear-algebra/norm.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/linear-algebra/null.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/linear-algebra/orth.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/linear-algebra/qzhess.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/linear-algebra/rank.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/linear-algebra/trace.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/linear-algebra/vec.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/linear-algebra/vech.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/miscellaneous/bincoeff.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/miscellaneous/bug_report.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/miscellaneous/comma.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/miscellaneous/computer.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/miscellaneous/cputime.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/miscellaneous/delete.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/miscellaneous/dir.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/miscellaneous/dump_prefs.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/miscellaneous/etime.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/miscellaneous/fileparts.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/miscellaneous/flops.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/miscellaneous/fullfile.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/miscellaneous/is_leap_year.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/miscellaneous/ispc.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/miscellaneous/isunix.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/miscellaneous/list_primes.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/miscellaneous/menu.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/miscellaneous/not.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/miscellaneous/pack.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/miscellaneous/paren.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/miscellaneous/path.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/miscellaneous/popen2.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/miscellaneous/semicolon.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/miscellaneous/tempdir.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/miscellaneous/tempname.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/miscellaneous/texas_lotto.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/miscellaneous/tic.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/miscellaneous/toc.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/miscellaneous/unix.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/miscellaneous/version.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/miscellaneous/xor.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/miscellaneous/PKG_ADD
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/__axis_label__.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/__errcomm__.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/__errplot__.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/__plr1__.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/__plr2__.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/__plr__.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/__plt1__.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/__plt2__.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/__plt2mm__.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/__plt2mv__.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/__plt2ss__.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/__plt2vm__.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/__plt2vv__.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/__plt__.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/__pltopt1__.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/__pltopt__.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/axis.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/bar.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/bottom_title.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/close.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/contour.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/errorbar.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/figure.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/grid.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/hist.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/loglog.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/loglogerr.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/mesh.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/meshdom.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/meshgrid.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/mplot.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/multiplot.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/oneplot.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/orient.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/plot.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/plot_border.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/polar.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/print.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/semilogx.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/semilogxerr.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/semilogy.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/semilogyerr.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/shg.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/sombrero.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/stairs.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/subplot.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/subwindow.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/title.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/top_title.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/xlabel.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/ylabel.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/zlabel.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/PKG_ADD
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/polynomial/compan.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/polynomial/conv.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/polynomial/deconv.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/polynomial/poly.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/polynomial/polyder.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/polynomial/polyderiv.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/polynomial/polyfit.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/polynomial/polyinteg.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/polynomial/polyout.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/polynomial/polyreduce.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/polynomial/polyval.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/polynomial/polyvalm.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/polynomial/residue.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/polynomial/roots.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/quaternion/demoquat.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/quaternion/qconj.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/quaternion/qcoordinate_plot.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/quaternion/qderiv.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/quaternion/qderivmat.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/quaternion/qinv.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/quaternion/qmult.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/quaternion/qtrans.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/quaternion/qtransv.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/quaternion/qtransvmat.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/quaternion/quaternion.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/set/complement.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/set/create_set.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/set/intersection.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/set/union.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/signal/arch_fit.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/signal/arch_rnd.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/signal/arch_test.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/signal/arma_rnd.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/signal/autocor.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/signal/autocov.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/signal/autoreg_matrix.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/signal/bartlett.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/signal/blackman.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/signal/detrend.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/signal/diffpara.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/signal/durbinlevinson.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/signal/fftconv.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/signal/fftfilt.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/signal/fftshift.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/signal/fractdiff.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/signal/freqz.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/signal/freqz_plot.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/signal/hamming.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/signal/hanning.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/signal/hurst.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/signal/periodogram.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/signal/rectangle_lw.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/signal/rectangle_sw.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/signal/sinc.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/signal/sinetone.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/signal/sinewave.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/signal/spectral_adf.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/signal/spectral_xdf.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/signal/spencer.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/signal/stft.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/signal/synthesis.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/signal/triangle_lw.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/signal/triangle_sw.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/signal/unwrap.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/signal/yulewalker.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/specfun/bessel.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/specfun/beta.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/specfun/betai.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/specfun/erfinv.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/specfun/gammai.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/specfun/log2.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/specfun/pow2.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/special-matrix/hankel.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/special-matrix/hilb.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/special-matrix/invhilb.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/special-matrix/sylvester_matrix.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/special-matrix/toeplitz.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/special-matrix/vander.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/startup/octaverc
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/base/center.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/base/cloglog.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/base/cor.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/base/corrcoef.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/base/cov.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/base/cut.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/base/gls.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/base/iqr.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/base/kendall.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/base/kurtosis.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/base/logit.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/base/mahalanobis.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/base/mean.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/base/meansq.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/base/median.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/base/moment.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/base/ols.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/base/ppplot.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/base/probit.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/base/qqplot.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/base/range.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/base/ranks.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/base/run_count.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/base/skewness.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/base/spearman.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/base/statistics.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/base/std.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/base/studentize.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/base/table.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/base/values.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/base/var.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/distributions/beta_cdf.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/distributions/beta_inv.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/distributions/beta_pdf.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/distributions/beta_rnd.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/distributions/binomial_cdf.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/distributions/binomial_inv.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/distributions/binomial_pdf.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/distributions/binomial_rnd.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/distributions/cauchy_cdf.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/distributions/cauchy_inv.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/distributions/cauchy_pdf.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/distributions/cauchy_rnd.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/distributions/chisquare_cdf.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/distributions/chisquare_inv.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/distributions/chisquare_pdf.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/distributions/chisquare_rnd.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/distributions/discrete_cdf.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/distributions/discrete_inv.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/distributions/discrete_pdf.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/distributions/discrete_rnd.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/distributions/empirical_cdf.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/distributions/empirical_inv.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/distributions/empirical_pdf.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/distributions/empirical_rnd.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/distributions/exponential_cdf.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/distributions/exponential_inv.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/distributions/exponential_pdf.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/distributions/exponential_rnd.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/distributions/f_cdf.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/distributions/f_inv.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/distributions/f_pdf.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/distributions/f_rnd.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/distributions/gamma_cdf.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/distributions/gamma_inv.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/distributions/gamma_pdf.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/distributions/gamma_rnd.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/distributions/geometric_cdf.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/distributions/geometric_inv.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/distributions/geometric_pdf.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/distributions/geometric_rnd.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/distributions/hypergeometric_cdf.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/distributions/hypergeometric_inv.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/distributions/laplace_cdf.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/distributions/hypergeometric_pdf.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/distributions/hypergeometric_rnd.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/distributions/kolmogorov_smirnov_cdf.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/distributions/laplace_inv.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/distributions/laplace_pdf.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/distributions/laplace_rnd.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/distributions/logistic_cdf.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/distributions/logistic_inv.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/distributions/logistic_pdf.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/distributions/logistic_rnd.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/distributions/lognormal_cdf.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/distributions/lognormal_inv.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/distributions/lognormal_pdf.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/distributions/lognormal_rnd.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/distributions/normal_cdf.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/distributions/normal_inv.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/distributions/normal_pdf.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/distributions/normal_rnd.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/distributions/pascal_cdf.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/distributions/pascal_inv.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/distributions/pascal_pdf.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/distributions/pascal_rnd.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/distributions/poisson_cdf.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/distributions/poisson_inv.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/distributions/poisson_pdf.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/distributions/poisson_rnd.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/distributions/stdnormal_cdf.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/distributions/stdnormal_inv.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/distributions/stdnormal_pdf.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/distributions/stdnormal_rnd.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/distributions/t_cdf.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/distributions/t_inv.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/distributions/t_pdf.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/distributions/t_rnd.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/distributions/uniform_cdf.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/distributions/uniform_inv.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/distributions/uniform_pdf.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/distributions/uniform_rnd.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/distributions/weibull_cdf.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/distributions/weibull_inv.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/distributions/weibull_pdf.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/distributions/weibull_rnd.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/distributions/wiener_rnd.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/models/logistic_regression.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/models/logistic_regression_derivatives.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/models/logistic_regression_likelihood.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/tests/anova.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/tests/bartlett_test.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/tests/chisquare_test_homogeneity.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/tests/chisquare_test_independence.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/tests/cor_test.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/tests/f_test_regression.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/tests/hotelling_test.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/tests/hotelling_test_2.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/tests/kolmogorov_smirnov_test.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/tests/kolmogorov_smirnov_test_2.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/tests/kruskal_wallis_test.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/tests/manova.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/tests/mcnemar_test.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/tests/prop_test_2.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/tests/run_test.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/tests/sign_test.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/tests/t_test.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/tests/t_test_2.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/tests/t_test_regression.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/tests/u_test.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/tests/var_test.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/tests/welch_test.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/tests/wilcoxon_test.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/tests/z_test.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/tests/z_test_2.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/strings/base2dec.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/strings/bin2dec.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/strings/blanks.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/strings/deblank.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/strings/dec2base.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/strings/dec2bin.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/strings/dec2hex.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/strings/findstr.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/strings/hex2dec.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/strings/index.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/strings/isletter.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/strings/lower.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/strings/rindex.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/strings/split.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/strings/str2mat.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/strings/str2num.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/strings/strcat.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/strings/strcmp.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/strings/strjust.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/strings/strrep.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/strings/substr.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/strings/upper.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/time/asctime.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/time/clock.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/time/ctime.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/time/date.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/imagelib/default.img
-%%DATADIR%%/ls-R
-@exec mkdir -p %D/%%DATADIR%%/site/api-v13/m 2>/dev/null || true
-@exec mkdir -p %D/%%DATADIR%%/site/exec/%%GNU_HOST%% 2>/dev/null || true
-@exec mkdir -p %D/%%DATADIR%%/site/m 2>/dev/null || true
-@exec mkdir -p %D/%%DATADIR%%/site/oct/%%GNU_HOST%% 2>/dev/null || true
-@exec mkdir -p %D/%%DATADIR%%/%%OCTAVE_VERSION%%/site 2>/dev/null || true
-@dirrmtry %%DATADIR%%/site/api-v13/m
-@dirrmtry %%DATADIR%%/site/api-v13
-@dirrmtry %%DATADIR%%/site/exec/%%GNU_HOST%%
-@dirrmtry %%DATADIR%%/site/exec
-@dirrmtry %%DATADIR%%/site/oct/%%GNU_HOST%%
-@dirrmtry %%DATADIR%%/site/oct
-@dirrmtry %%DATADIR%%/%%OCTAVE_VERSION%%/site/exec/%%GNU_HOST%%
-@dirrmtry %%DATADIR%%/%%OCTAVE_VERSION%%/site/exec
-@dirrmtry %%DATADIR%%/%%OCTAVE_VERSION%%/site/m
-@dirrm %%DATADIR%%/%%OCTAVE_VERSION%%/site
-@dirrm %%DATADIR%%/%%OCTAVE_VERSION%%/m/audio
-@dirrm %%DATADIR%%/%%OCTAVE_VERSION%%/m/control/base
-@dirrm %%DATADIR%%/%%OCTAVE_VERSION%%/m/control/hinf
-@dirrm %%DATADIR%%/%%OCTAVE_VERSION%%/m/control/obsolete
-@dirrm %%DATADIR%%/%%OCTAVE_VERSION%%/m/control/system
-@dirrm %%DATADIR%%/%%OCTAVE_VERSION%%/m/control/util
-@dirrm %%DATADIR%%/%%OCTAVE_VERSION%%/m/control
-@dirrm %%DATADIR%%/%%OCTAVE_VERSION%%/m/deprecated
-@dirrm %%DATADIR%%/%%OCTAVE_VERSION%%/m/elfun
-@dirrm %%DATADIR%%/%%OCTAVE_VERSION%%/m/finance
-@dirrm %%DATADIR%%/%%OCTAVE_VERSION%%/m/general
-@dirrm %%DATADIR%%/%%OCTAVE_VERSION%%/m/image
-@dirrm %%DATADIR%%/%%OCTAVE_VERSION%%/m/io
-@dirrm %%DATADIR%%/%%OCTAVE_VERSION%%/m/linear-algebra
-@dirrm %%DATADIR%%/%%OCTAVE_VERSION%%/m/miscellaneous
-@dirrm %%DATADIR%%/%%OCTAVE_VERSION%%/m/plot
-@dirrm %%DATADIR%%/%%OCTAVE_VERSION%%/m/polynomial
-@dirrm %%DATADIR%%/%%OCTAVE_VERSION%%/m/quaternion
-@dirrm %%DATADIR%%/%%OCTAVE_VERSION%%/m/set
-@dirrm %%DATADIR%%/%%OCTAVE_VERSION%%/m/signal
-@dirrm %%DATADIR%%/%%OCTAVE_VERSION%%/m/specfun
-@dirrm %%DATADIR%%/%%OCTAVE_VERSION%%/m/special-matrix
-@dirrm %%DATADIR%%/%%OCTAVE_VERSION%%/m/startup
-@dirrm %%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/base
-@dirrm %%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/distributions
-@dirrm %%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/models
-@dirrm %%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/tests
-@dirrm %%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics
-@dirrm %%DATADIR%%/%%OCTAVE_VERSION%%/m/strings
-@dirrm %%DATADIR%%/%%OCTAVE_VERSION%%/m/time
-@dirrmtry %%DATADIR%%/%%OCTAVE_VERSION%%/m
-@dirrm %%DATADIR%%/%%OCTAVE_VERSION%%/imagelib
-@dirrm %%DATADIR%%/%%OCTAVE_VERSION%%
-@dirrm %%DATADIR%%/site/m/startup
-@dirrm %%DATADIR%%/site/m
-@dirrm %%DATADIR%%/site
-@dirrm %%DATADIR%%
-@exec mkdir -p %D/libexec/octave/site/api-v13/m 2>/dev/null || true
-@exec mkdir -p %D/libexec/octave/site/exec/%%GNU_HOST%% 2>/dev/null || true
-@exec mkdir -p %D/libexec/octave/site/m 2>/dev/null || true
-@exec mkdir -p %D/libexec/octave/site/oct/%%GNU_HOST%% 2>/dev/null || true
-@exec mkdir -p %D/libexec/octave/site/oct 2>/dev/null || true
-@dirrmtry libexec/octave/site/api-v13/%%GNU_HOST%%
-@dirrmtry libexec/octave/site/api-v13/m
-@dirrmtry libexec/octave/site/api-v13
-@dirrmtry libexec/octave/site/exec/%%GNU_HOST%%
-@dirrmtry libexec/octave/site/exec
-@dirrmtry libexec/octave/site/oct/api-v13/%%GNU_HOST%%
-@dirrmtry libexec/octave/site/oct/api-v13/m
-@dirrmtry libexec/octave/site/oct/api-v13
-@dirrmtry libexec/octave/site/m
-@dirrmtry libexec/octave/site/oct/%%GNU_HOST%%
-@dirrmtry libexec/octave/site/oct
-@dirrmtry libexec/octave/%%OCTAVE_VERSION%%/exec/%%GNU_HOST%%
-@dirrmtry libexec/octave/%%OCTAVE_VERSION%%/exec
-@dirrmtry libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%
-@dirrmtry libexec/octave/%%OCTAVE_VERSION%%/oct
-@dirrmtry libexec/octave/%%OCTAVE_VERSION%%/site/exec/%%GNU_HOST%%
-@dirrmtry libexec/octave/%%OCTAVE_VERSION%%/site/exec
-@dirrmtry libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%
-@dirrmtry libexec/octave/%%OCTAVE_VERSION%%/site/oct
-@dirrmtry libexec/octave/%%OCTAVE_VERSION%%/site
%%PORTDOCS%%@dirrm %%DOCSDIR%%
-@dirrmtry libexec/octave/%%OCTAVE_VERSION%%
-@dirrm libexec/octave/site
-@dirrmtry libexec/octave
-@dirrm lib/octave-%%OCTAVE_VERSION%%
-@dirrm include/octave-%%OCTAVE_VERSION%%/octave
-@dirrm include/octave-%%OCTAVE_VERSION%%