Add math/octave-forge, adding many features such as sparce matrix treatment,
fast fourier transformation, Statistics, Optimizations and more to math/octave.
This commit is contained in:
parent
dd4a4cfafb
commit
48216a14b5
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=108647
9 changed files with 842 additions and 0 deletions
|
@ -107,6 +107,7 @@
|
|||
SUBDIR += nsc2ke
|
||||
SUBDIR += ntl
|
||||
SUBDIR += octave
|
||||
SUBDIR += octave-forge
|
||||
SUBDIR += oleo
|
||||
SUBDIR += p5-AI-DecisionTree
|
||||
SUBDIR += p5-AI-NeuralNet-BackProp
|
||||
|
|
35
math/octave-forge/Makefile
Normal file
35
math/octave-forge/Makefile
Normal file
|
@ -0,0 +1,35 @@
|
|||
# New ports collection makefile for: octave-forge
|
||||
# Date created: 5 May 2004
|
||||
# Whom: Nakata Maho <maho@FreeBSD.org>
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= octave-forge
|
||||
PORTVERSION= 2004.02.12
|
||||
CATEGORIES= math
|
||||
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
||||
MASTER_SITE_SUBDIR= octave
|
||||
|
||||
MAINTAINER= maho@FreeBSD.org
|
||||
COMMENT= Many additional features to math/octave
|
||||
|
||||
BUILD_DEPENDS= ${LOCALBASE}/bin/bash:${PORTSDIR}/shells/bash2 \
|
||||
${LOCALBASE}/bin/octave:${PORTSDIR}/math/octave
|
||||
RUN_DEPENDS= ${LOCALBASE}/bin/octave:${PORTSDIR}/math/octave
|
||||
|
||||
USE_GMAKE= yes
|
||||
GNU_CONFIGURE= yes
|
||||
ALL_TARGET= # empty
|
||||
USE_REINPLACE= yes
|
||||
|
||||
GNU_HOST= ${ARCH}-portbld-freebsd${OSREL}
|
||||
PLIST_SUB= OCTAVE_VERSION="`${LOCALBASE}/bin/octave-config -v`" GNU_HOST=${GNU_HOST}
|
||||
|
||||
MAN1= mex.1
|
||||
|
||||
post-configure:
|
||||
@${REINPLACE_CMD} -e 's+%%LOCALBASE%%+${LOCALBASE}+g;' ${WRKSRC}/main/sparse/buildtests.sh
|
||||
@${REINPLACE_CMD} -e 's+#! /bin/sh+#! ${LOCALBASE}/bin/bash+g;' ${WRKSRC}/octinst.sh
|
||||
|
||||
.include <bsd.port.mk>
|
2
math/octave-forge/distinfo
Normal file
2
math/octave-forge/distinfo
Normal file
|
@ -0,0 +1,2 @@
|
|||
MD5 (octave-forge-2004.02.12.tar.gz) = 2c8a35bc59844c1fd4068a1213a3bc26
|
||||
SIZE (octave-forge-2004.02.12.tar.gz) = 2740019
|
11
math/octave-forge/files/patch-configure
Normal file
11
math/octave-forge/files/patch-configure
Normal file
|
@ -0,0 +1,11 @@
|
|||
--- configure.orig Thu Feb 12 16:56:56 2004
|
||||
+++ configure Fri May 7 06:06:47 2004
|
||||
@@ -2686,7 +2686,7 @@
|
||||
|
||||
COPY_FLAGS="-fdp"
|
||||
case "$canonical_host_type" in
|
||||
- powerpc-apple-darwin*)
|
||||
+ powerpc-apple-darwin*|*freebsd*)
|
||||
COPY_FLAGS="-Rfp"
|
||||
;;
|
||||
esac
|
11
math/octave-forge/files/patch-extra+mex+Makefile
Normal file
11
math/octave-forge/files/patch-extra+mex+Makefile
Normal file
|
@ -0,0 +1,11 @@
|
|||
--- extra/mex/Makefile~ Sat Feb 7 02:05:11 2004
|
||||
+++ extra/mex/Makefile Fri May 7 04:55:43 2004
|
||||
@@ -58,7 +58,7 @@
|
||||
@if test -d $(bindir) ; then \
|
||||
echo installing mex/mex in $(bindir) ; \
|
||||
$(RM) $(bindir)/mex ; \
|
||||
- $(INSTALL_PROGRAM) mex $(bindir)/mex ; \
|
||||
+ $(INSTALL) mex $(bindir)/mex ; \
|
||||
fi
|
||||
|
||||
clean: ; $(RM) mex mex_* $(MEXLIB) *.o *.oct core octave-core *~
|
22
math/octave-forge/files/patch-main+comm+galois-def.h
Normal file
22
math/octave-forge/files/patch-main+comm+galois-def.h
Normal file
|
@ -0,0 +1,22 @@
|
|||
http://www.octave.org/octave-lists/archive/bug-octave.2004/msg00181.html
|
||||
--- main/comm/galois-def.h.org Wed Apr 2 04:37:14 2003
|
||||
+++ main/comm/galois-def.h Fri May 7 04:38:27 2004
|
||||
@@ -306,13 +306,17 @@
|
||||
return r; \
|
||||
}
|
||||
|
||||
+#define TBM boolMatrix (1, 1, true)
|
||||
+#define FBM boolMatrix (1, 1, false)
|
||||
+#define NBM boolMatrix ()
|
||||
+
|
||||
#define MM_CMP_OPS1(M1, C1, M2, C2, GR1, GR2, CHECK) \
|
||||
MM_CMP_OP1(mx_el_lt, <, M1, C1, M2, C2, GR1, GR2, CHECK, NBM, NBM) \
|
||||
MM_CMP_OP1(mx_el_le, <=, M1, C1, M2, C2, GR1, GR2, CHECK, NBM, NBM) \
|
||||
MM_CMP_OP1(mx_el_ge, >=, M1, C1, M2, C2, GR1, GR2, CHECK, NBM, NBM) \
|
||||
MM_CMP_OP1(mx_el_gt, >, M1, C1, M2, C2, GR1, GR2, CHECK, NBM, NBM) \
|
||||
MM_CMP_OP1(mx_el_eq, ==, M1, , M2, , GR1, GR2, CHECK, FBM, TBM) \
|
||||
- MM_CMP_OP1(mx_el_ne, !=, M1, , M2, , GR1, GR2, CHECK, TBM, FBM) \
|
||||
+ MM_CMP_OP1(mx_el_ne, !=, M1, , M2, , GR1, GR2, CHECK, TBM, FBM)
|
||||
|
||||
#define MM_BOOL_OP1(F, OP, M1, M2, ZERO, GR1, GR2, CHECKTYPE) \
|
||||
boolMatrix \
|
8
math/octave-forge/files/patch-main+sparce+buildtests.sh
Normal file
8
math/octave-forge/files/patch-main+sparce+buildtests.sh
Normal file
|
@ -0,0 +1,8 @@
|
|||
--- main/sparse/buildtests.sh.org Fri Jan 30 09:28:02 2004
|
||||
+++ main/sparse/buildtests.sh Fri May 7 04:44:54 2004
|
||||
@@ -1,4 +1,4 @@
|
||||
-#!/bin/sh
|
||||
+#!%%LOCALBASE%%/bin/bash
|
||||
|
||||
# ./buildtest.sh preset
|
||||
# creates sptest.m with preset tests.
|
7
math/octave-forge/pkg-descr
Normal file
7
math/octave-forge/pkg-descr
Normal file
|
@ -0,0 +1,7 @@
|
|||
The octave-forge package is the result of
|
||||
The GNU Octave Repositry project, which is intended to be a central
|
||||
location for custom scripts, functions and extensions for GNU Octave.
|
||||
contains the source for all the functions plus build and install
|
||||
scripts.
|
||||
|
||||
WWW: http://octave.sourceforge.net/
|
745
math/octave-forge/pkg-plist
Normal file
745
math/octave-forge/pkg-plist
Normal file
|
@ -0,0 +1,745 @@
|
|||
bin/mex
|
||||
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/SBBacksub.oct
|
||||
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/SBEig.oct
|
||||
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/SBFactor.oct
|
||||
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/SBProd.oct
|
||||
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/SBSolve.oct
|
||||
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/SymBand.oct
|
||||
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/__grcla__.oct
|
||||
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/__grclf__.oct
|
||||
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/__grcmd__.oct
|
||||
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/__grexit__.oct
|
||||
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/__grfigure__.oct
|
||||
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/__grgetstat__.oct
|
||||
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/__grhold__.oct
|
||||
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/__grinit__.oct
|
||||
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/__grishold__.oct
|
||||
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/__grnewset__.oct
|
||||
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/__grsetgraph__.oct
|
||||
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/_errcore.oct
|
||||
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/_gfweight.oct
|
||||
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/bchdeco.oct
|
||||
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/bchenco.oct
|
||||
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/bitand.oct
|
||||
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/bitmax.oct
|
||||
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/bitor.oct
|
||||
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/bitxor.oct
|
||||
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/bwfill.oct
|
||||
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/bwlabel.oct
|
||||
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/chol.oct
|
||||
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/conv2.oct
|
||||
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/cordflt2.oct
|
||||
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/cyclgen.oct
|
||||
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/cyclpoly.oct
|
||||
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/deref.oct
|
||||
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/dispatch.oct
|
||||
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/ellipj.oct
|
||||
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/full.oct
|
||||
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/gdet.oct
|
||||
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/gdiag.oct
|
||||
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/getfield.oct
|
||||
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/gexp.oct
|
||||
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/gf.oct
|
||||
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/gfilter.oct
|
||||
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/ginv.oct
|
||||
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/ginverse.oct
|
||||
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/glog.oct
|
||||
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/glu.oct
|
||||
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/gpick.oct
|
||||
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/gprod.oct
|
||||
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/grab.oct
|
||||
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/grank.oct
|
||||
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/greshape.oct
|
||||
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/gsqrt.oct
|
||||
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/gsum.oct
|
||||
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/gsumsq.oct
|
||||
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/gtext.oct
|
||||
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/gzoom.oct
|
||||
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/is_complex_sparse.oct
|
||||
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/is_real_sparse.oct
|
||||
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/is_sparse.oct
|
||||
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/isgalois.oct
|
||||
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/isprimitive.oct
|
||||
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/leval.oct
|
||||
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/listen.oct
|
||||
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/lp.oct
|
||||
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/make_sparse.oct
|
||||
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/mark_for_deletion.oct
|
||||
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/matrix.h
|
||||
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/medfilt1.oct
|
||||
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/mex.h
|
||||
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/mex.o
|
||||
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/nnz.oct
|
||||
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/pchip_deriv.oct
|
||||
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/pretty.oct
|
||||
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/primpoly.oct
|
||||
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/rand.oct
|
||||
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/randn.oct
|
||||
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/regexp.oct
|
||||
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/remez.oct
|
||||
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/rotate_scale.oct
|
||||
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/rsdec.oct
|
||||
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/rsenc.oct
|
||||
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/setfield.oct
|
||||
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/sort.oct
|
||||
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/spabs.oct
|
||||
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/sparse.oct
|
||||
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/spfind.oct
|
||||
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/spimag.oct
|
||||
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/spinv.oct
|
||||
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/splu.oct
|
||||
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/spreal.oct
|
||||
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/struct.oct
|
||||
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/syndtable.oct
|
||||
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/trisolve.oct
|
||||
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/waitbar.oct
|
||||
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/xmlread.oct
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/FIXES/grid.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/FIXES/hankel.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/FIXES/lin2mu.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/FIXES/mu2lin.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/FIXES/polyder.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/FIXES/polyderiv.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/FIXES/polygcd.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/FIXES/tf2zp.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/FIXES/toeplitz.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/FIXES/tril.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/FIXES/triu.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/FIXES/zp2tf.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/NaN/covm.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/NaN/sumskipnan.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/audio/au.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/audio/aucapture.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/audio/auload.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/audio/auplot.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/audio/aurecord.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/audio/ausave.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/audio/clip.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/audio/sample.wav
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/audio/sound.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/audio/soundsc.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/civil/__nlnewmark_fcn__.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/civil/newmark.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/civil/nlnewmark.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/comm/PKG_ADD
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/comm/ademodce.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/comm/amodce.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/comm/apkconst.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/comm/awgn.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/comm/bchpoly.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/comm/bi2de.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/comm/biterr.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/comm/comms.info
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/comm/comms.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/comm/compand.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/comm/cosets.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/comm/de2bi.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/comm/decode.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/comm/demodmap.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/comm/encode.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/comm/eyediagram.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/comm/gconv.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/comm/gconvmtx.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/comm/gdeconv.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/comm/gdftmtx.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/comm/gen2par.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/comm/gfft.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/comm/gftable.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/comm/gfweight.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/comm/gifft.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/comm/groots.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/comm/hammgen.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/comm/lloyds.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/comm/minpol.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/comm/modmap.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/comm/qaskdeco.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/comm/qaskenco.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/comm/quantiz.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/comm/randerr.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/comm/randint.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/comm/randsrc.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/comm/rsdecof.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/comm/rsencof.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/comm/rsgenpoly.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/comm/scatterplot.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/comm/symerr.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/comm/vec2mat.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/comm/wgn.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/control/feedback.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/general/bitcmp.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/general/bitget.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/general/bitset.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/general/bitshift.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/general/blkdiag.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/general/char.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/general/complex.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/general/cplxpair.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/general/ctranspose.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/general/cumtrapz.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/general/deal.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/general/del2.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/general/dos.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/general/double.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/general/fcnchk.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/general/gradient.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/general/ifftshift.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/general/interp1.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/general/interp2.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/general/interpft.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/general/isequal.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/general/isunix.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/general/lookup.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/general/ndims.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/general/polyarea.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/general/quadl.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/general/rat.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/general/rats.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/general/sortrows.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/general/transpose.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/general/trapz.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/general/unix.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/geometry/convhull.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/geometry/delaunay.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/geometry/delaunay3.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/geometry/griddata.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/geometry/tsearchdemo.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/geometry/voronoi.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/geometry/voronoin.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/graceplot/grace_octave_path.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/graceplot/toggle_grace_use.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/ident/idplot.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/ident/idsim.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/ident/mktheta.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/ident/poly2th.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/MakeShears.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/autumn.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/bmpwrite.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/bone.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/brighten.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/bwborder.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/bwlabel.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/bwselect.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/colfilt.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/colorgradient.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/cool.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/copper.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/corr2.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/edge.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/flag.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/grayslice.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/histeq.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/hot.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/hsv.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/im2bw.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/imadjust.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/imginfo.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/imhist.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/imnoise.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/impad.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/imread.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/imrotate.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/imshear.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/imtranslate.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/imwrite.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/isbw.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/isgray.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/isind.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/jet.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/mat2gray.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/mean2.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/medfilt2.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/ordfilt2.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/pink.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/prism.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/rainbow.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/rgb2gray.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/spring.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/std2.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/summer.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/testimio.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/white.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/winter.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/integration/Contents.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/integration/count.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/integration/cquadnd.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/integration/crule.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/integration/crule2d.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/integration/crule2dgen.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/integration/gquad.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/integration/gquad2d.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/integration/gquad2d6.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/integration/gquad2dgen.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/integration/gquad6.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/integration/gquadnd.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/integration/grule.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/integration/grule2d.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/integration/grule2dgen.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/integration/innerfun.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/integration/ncrule.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/integration/quad2dc.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/integration/quad2dcgen.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/integration/quad2dg.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/integration/quad2dggen.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/integration/quadc.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/integration/quadg.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/integration/quadndg.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/integration/zero_count.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/io/append_save.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/io/dlmread.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/io/dlmwrite.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/io/filesep.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/io/textread.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/irsa/irsa_act.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/irsa/irsa_actcore.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/irsa/irsa_check.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/irsa/irsa_dft.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/irsa/irsa_dftfp.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/irsa/irsa_genreal.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/irsa/irsa_idft.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/irsa/irsa_isregular.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/irsa/irsa_jitsp.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/irsa/irsa_mdsp.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/irsa/irsa_normalize.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/irsa/irsa_plotdft.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/irsa/irsa_resample.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/irsa/irsa_rgenreal.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/linear-algebra/funm.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/linear-algebra/rref.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/linear-algebra/thfm.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/miscellaneous/OCTAVE_FORGE_VERSION.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/miscellaneous/PKG_ADD
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/miscellaneous/edit.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/miscellaneous/grep.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/miscellaneous/inline.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/miscellaneous/inz.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/miscellaneous/map.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/miscellaneous/nze.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/miscellaneous/read_options.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/miscellaneous/rotparams.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/miscellaneous/rotv.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/miscellaneous/slurp_file.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/miscellaneous/temp_name.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/miscellaneous/test_inline_1.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/miscellaneous/xmlwrite.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/ode/ode23.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/ode/ode45.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/ode/ode78.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/ode/penddot.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/ode/pendulum.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/ode/rk2fixed.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/ode/rk4fixed.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/ode/rk8fixed.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/optim/adsmax.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/optim/bfgs.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/optim/bs_gradient.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/optim/cdiff.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/optim/d2_min.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/optim/deriv.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/optim/dfdp.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/optim/expdemo.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/optim/expfit.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/optim/fmin.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/optim/fminbnd.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/optim/fmins.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/optim/fminunc.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/optim/fzero.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/optim/leasqr.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/optim/leasqrdemo.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/optim/line_min.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/optim/lp_test.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/optim/mdsmax.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/optim/minimize.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/optim/nelder_mead_min.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/optim/nmsmax.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/optim/nrm.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/optim/optimset.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/optim/poly_2_ex.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/optim/test_d2_min_1.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/optim/test_d2_min_2.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/optim/test_d2_min_3.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/optim/test_fminunc_1.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/optim/test_min_1.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/optim/test_min_2.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/optim/test_min_3.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/optim/test_min_4.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/optim/test_minimize_1.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/optim/test_nelder_mead_min_1.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/optim/test_nelder_mead_min_2.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/optim/test_wpolyfit.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/optim/wpolyfit.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/optim/wpolyfitdemo.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/path/addpath.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/path/rmpath.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/pdb/elements.mat
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/pdb/plotpdb.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/pdb/read_pdb.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/pdb/strtoz.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/pdb/write_pdb.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/pdb/write_pdb_quick.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/plot/__plt3__.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/plot/clf.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/plot/contourf.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/plot/dhbar.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/plot/drawnow.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/plot/dxfwrite.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/plot/fill.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/plot/fill3.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/plot/fplot.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/plot/gget.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/plot/ginput.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/plot/legend.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/plot/meshc.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/plot/orient.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/plot/patch.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/plot/pcolor.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/plot/peaks.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/plot/pie.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/plot/plot3.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/plot/print.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/plot/quiver.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/plot/stem.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/plot/surf.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/plot/surfc.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/plot/text.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/plot/tics.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/plot/view.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/set/intersect.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/set/ismember.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/set/setdiff.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/set/setxor.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/set/unique.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/signal/__ellip_ws.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/signal/__ellip_ws_min.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/signal/__power.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/signal/arburg.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/signal/aryule.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/signal/bilinear.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/signal/boxcar.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/signal/butter.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/signal/buttord.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/signal/cceps.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/signal/cheb.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/signal/cheb1ord.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/signal/cheb2ord.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/signal/chebwin.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/signal/cheby1.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/signal/cheby2.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/signal/chirp.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/signal/cohere.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/signal/convmtx.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/signal/csd.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/signal/czt.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/signal/dct.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/signal/dct2.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/signal/dctmtx.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/signal/decimate.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/signal/dftmtx.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/signal/ellip.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/signal/ellipdemo.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/signal/ellipord.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/signal/filter2.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/signal/filtfilt.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/signal/fir1.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/signal/fir2.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/signal/freqs.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/signal/freqs_plot.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/signal/gaussian.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/signal/gausswin.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/signal/grpdelay.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/signal/hilbert.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/signal/idct.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/signal/idct2.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/signal/impz.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/signal/interp.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/signal/invfreq.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/signal/invfreqs.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/signal/invfreqz.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/signal/kaiser.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/signal/kaiserord.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/signal/levinson.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/signal/ncauer.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/signal/pburg.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/signal/polystab.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/signal/pulstran.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/signal/pwelch.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/signal/pyulear.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/signal/rceps.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/signal/rectpuls.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/signal/resample.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/signal/sftrans.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/signal/sgolay.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/signal/sgolayfilt.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/signal/specgram.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/signal/tfe.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/signal/triang.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/signal/tripuls.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/signal/xcorr.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/signal/xcorr2.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/signal/xcov.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/signal/zplane.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/sparse/PKG_ADD
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/sparse/fem_test.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/sparse/issparse.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/sparse/sp_test.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/sparse/spdiags.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/sparse/sphcat.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/sparse/sprand.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/sparse/sprandn.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/sparse/spstats.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/sparse/spsum.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/sparse/sptest.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/sparse/spvcat.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/sparse/spy.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/specfun/betaln.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/specfun/ellipj.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/specfun/ellipke.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/specfun/factor.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/specfun/factorial.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/specfun/gammaln.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/specfun/isprime.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/specfun/lambertw.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/specfun/legendre.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/specfun/nchoosek.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/specfun/perms.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/specfun/primes.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/specfun/test_ellipj.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/specfun/test_sncndn.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/special-matrix/lauchli.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/special-matrix/magic.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/special-matrix/pascal.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/special-matrix/rosser.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/special-matrix/wilkinson.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/splines/csape.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/splines/csapi.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/splines/fnder.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/splines/fnplt.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/splines/mkpp.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/splines/pchip.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/splines/ppval.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/splines/spline.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/splines/trisolve.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/splines/unmkpp.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/statistics/anovan.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/statistics/boxplot.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/statistics/geomean.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/statistics/harmmean.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/statistics/mad.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/statistics/nanmax.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/statistics/nanmean.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/statistics/nanmedian.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/statistics/nanmin.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/statistics/nanstd.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/statistics/nansum.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/statistics/normplot.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/statistics/prctile.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/statistics/scatter.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/statistics/trimmean.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/statistics/zscore.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/strings/base64encode.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/strings/cellstr.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/strings/mat2str.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/strings/str2double.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/strings/strcmpi.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/strings/strmatch.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/strings/strncmp.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/strings/strncmpi.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/strings/strsort.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/strings/strtok.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/strings/strvcat.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/struct/fieldnames.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/struct/getfield.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/struct/isfield.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/struct/rmfield.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/struct/setfield.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/struct/struct.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/struct/tar.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/struct/test_struct.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/symband/BandToFull.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/symband/BandToSparse.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/symband/ExampleEigenValues.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/symband/ExampleGenEigenValues.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/symband/FullToBand.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/symband/gapTest.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/symbolic/findsym.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/symbolic/poly2sym.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/symbolic/splot.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/symbolic/sym2poly.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/symbolic/symfsolve.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/testfun/PKG_ADD
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/testfun/assert.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/testfun/demo.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/testfun/example.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/testfun/fail.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/testfun/pretty
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/testfun/speed.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/testfun/test.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/time/datenum.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/time/datestr.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/time/datevec.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/time/now.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/time/weekday.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/tsa/aar.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/tsa/aarmam.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/tsa/ac2poly.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/tsa/ac2rc.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/tsa/acorf.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/tsa/acovf.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/tsa/adim.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/tsa/ar2poly.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/tsa/ar2rc.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/tsa/ar_spa.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/tsa/arcext.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/tsa/arfit2.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/tsa/biacovf.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/tsa/bisdemo.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/tsa/bispec.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/tsa/content.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/tsa/contents.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/tsa/detrend.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/tsa/durlev.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/tsa/flag_implicit_samplerate.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/tsa/flix.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/tsa/histo.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/tsa/histo2.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/tsa/histo3.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/tsa/histo4.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/tsa/hup.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/tsa/invest0.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/tsa/invest1.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/tsa/invfdemo.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/tsa/lattice.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/tsa/lpc.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/tsa/mvar.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/tsa/mvfilter.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/tsa/mvfreqz.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/tsa/pacf.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/tsa/parcor.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/tsa/poly2ac.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/tsa/poly2ar.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/tsa/poly2rc.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/tsa/rc2ac.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/tsa/rc2ar.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/tsa/rc2poly.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/tsa/sbispec.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/tsa/selmo.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/tsa/sinvest1.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/tsa/tsademo.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/tsa/ucp.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/tsa/y2res.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/vrml/best_dir.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/vrml/best_dir_cov.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/vrml/bound_convex.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/vrml/defSpeakBox.wrl
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/vrml/defSpeakSphere.wrl
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/vrml/proplan.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/vrml/save_vrml.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/vrml/select_3D_points.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/vrml/test_vmesh.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/vrml/test_vrml_faces.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/vrml/vmesh.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/vrml/vrml_Background.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/vrml/vrml_PointLight.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/vrml/vrml_arrow.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/vrml/vrml_browse.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/vrml/vrml_cyl.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/vrml/vrml_demo_tutorial_1.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/vrml/vrml_demo_tutorial_2.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/vrml/vrml_demo_tutorial_3.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/vrml/vrml_demo_tutorial_4.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/vrml/vrml_ellipsoid.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/vrml/vrml_faces.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/vrml/vrml_flatten.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/vrml/vrml_frame.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/vrml/vrml_group.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/vrml/vrml_kill.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/vrml/vrml_lines.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/vrml/vrml_material.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/vrml/vrml_parallelogram.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/vrml/vrml_points.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/vrml/vrml_select_points.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/vrml/vrml_surf.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/vrml/vrml_text.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/vrml/vrml_thick_surf.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/vrml/vrml_transfo.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/octave-forge-alternatives/m/graceplot/PKG_ADD
|
||||
share/octave/%%OCTAVE_VERSION%%/site/octave-forge-alternatives/m/graceplot/__errcomm__.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/octave-forge-alternatives/m/graceplot/__errplot__.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/octave-forge-alternatives/m/graceplot/__grpltfmt__.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/octave-forge-alternatives/m/graceplot/__plr1__.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/octave-forge-alternatives/m/graceplot/__plr2__.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/octave-forge-alternatives/m/graceplot/__plr__.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/octave-forge-alternatives/m/graceplot/__plt1__.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/octave-forge-alternatives/m/graceplot/__plt2__.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/octave-forge-alternatives/m/graceplot/__plt2mm__.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/octave-forge-alternatives/m/graceplot/__plt2mv__.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/octave-forge-alternatives/m/graceplot/__plt2ss__.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/octave-forge-alternatives/m/graceplot/__plt2vm__.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/octave-forge-alternatives/m/graceplot/__plt2vv__.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/octave-forge-alternatives/m/graceplot/__plt__.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/octave-forge-alternatives/m/graceplot/__pltopt1__.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/octave-forge-alternatives/m/graceplot/__pltopt__.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/octave-forge-alternatives/m/graceplot/axis.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/octave-forge-alternatives/m/graceplot/bar.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/octave-forge-alternatives/m/graceplot/cla.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/octave-forge-alternatives/m/graceplot/clf.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/octave-forge-alternatives/m/graceplot/errorbar.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/octave-forge-alternatives/m/graceplot/figure.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/octave-forge-alternatives/m/graceplot/hold.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/octave-forge-alternatives/m/graceplot/ishold.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/octave-forge-alternatives/m/graceplot/mplot.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/octave-forge-alternatives/m/graceplot/multiplot.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/octave-forge-alternatives/m/graceplot/oneplot.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/octave-forge-alternatives/m/graceplot/plot.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/octave-forge-alternatives/m/graceplot/polar.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/octave-forge-alternatives/m/graceplot/print.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/octave-forge-alternatives/m/graceplot/semilogx.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/octave-forge-alternatives/m/graceplot/semilogxerr.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/octave-forge-alternatives/m/graceplot/semilogy.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/octave-forge-alternatives/m/graceplot/semilogyerr.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/octave-forge-alternatives/m/graceplot/subplot.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/octave-forge-alternatives/m/graceplot/subtitle.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/octave-forge-alternatives/m/graceplot/subwindow.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/octave-forge-alternatives/m/graceplot/title.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/octave-forge-alternatives/m/graceplot/xlabel.m
|
||||
share/octave/%%OCTAVE_VERSION%%/site/octave-forge-alternatives/m/graceplot/ylabel.m
|
||||
@dirrm share/octave/%%OCTAVE_VERSION%%/site/octave-forge-alternatives/m/graceplot
|
||||
@dirrm share/octave/%%OCTAVE_VERSION%%/site/octave-forge-alternatives/m
|
||||
@dirrm share/octave/%%OCTAVE_VERSION%%/site/octave-forge-alternatives
|
||||
@dirrm share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/vrml
|
||||
@dirrm share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/tsa
|
||||
@dirrm share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/time
|
||||
@dirrm share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/testfun
|
||||
@dirrm share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/symbolic
|
||||
@dirrm share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/symband
|
||||
@dirrm share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/struct
|
||||
@dirrm share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/strings
|
||||
@dirrm share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/statistics
|
||||
@dirrm share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/splines
|
||||
@dirrm share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/special-matrix
|
||||
@dirrm share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/specfun
|
||||
@dirrm share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/sparse
|
||||
@dirrm share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/signal
|
||||
@dirrm share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/set
|
||||
@dirrm share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/plot
|
||||
@dirrm share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/pdb
|
||||
@dirrm share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/path
|
||||
@dirrm share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/optim
|
||||
@dirrm share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/ode
|
||||
@dirrm share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/miscellaneous
|
||||
@dirrm share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/linear-algebra
|
||||
@dirrm share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/irsa
|
||||
@dirrm share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/io
|
||||
@dirrm share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/integration
|
||||
@dirrm share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image
|
||||
@dirrm share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/ident
|
||||
@dirrm share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/graceplot
|
||||
@dirrm share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/geometry
|
||||
@dirrm share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/general
|
||||
@dirrm share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/control
|
||||
@dirrm share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/comm
|
||||
@dirrm share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/civil
|
||||
@dirrm share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/audio
|
||||
@dirrm share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/NaN
|
||||
@dirrm share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/FIXES
|
||||
@dirrm share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge
|
||||
@dirrm libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge
|
Loading…
Reference in a new issue