pkgsrc/math/octave/PLIST
asau fafce37539 Update to Octave 3.6.2
Summary of important user-visible changes for version 3.6:
---------------------------------------------------------

 ** The PCRE library is now required to build Octave.  If a pre-compiled
    package does not exist for your system, you can find PCRE sources
    at http://www.pcre.org

 ** The ARPACK library is no longer distributed with Octave.
    If you need the eigs or svds functions you must provide an
    external ARPACK through a package manager or by compiling it
    yourself.  If a pre-compiled package does not exist for your system,
    you can find the current ARPACK sources at
    http://forge.scilab.org/index.php/p/arpack-ng

 ** Many of Octave's binary operators (.*, .^, +, -, ...) now perform
    automatic broadcasting for array operations which allows you to use
    operator notation instead of calling bsxfun or expanding arrays (and
    unnecessarily wasting memory) with repmat or similar idioms.  For
    example, to scale the columns of a matrix by the elements of a row
    vector, you may now write

      rv .* M

    In this expression, the number of elements of rv must match the
    number of columns of M.  The following operators are affected:

      plus      +  .+
      minus     -  .-
      times     .*
      rdivide   ./
      ldivide   .\
      power     .^  .**
      lt        <
      le        <=
      eq        ==
      gt        >
      ge        >=
      ne        !=  ~=
      and       &
      or        |
      atan2
      hypot
      max
      min
      mod
      rem
      xor

    additionally, since the A op= B assignment operators are equivalent
    to A = A op B, the following operators are also affected:

      +=  -=  .+=  .-=  .*=  ./=  .\=  .^=  .**=  &=  |=

    See the "Broadcasting" section in the new "Vectorization and Faster
    Code Execution" chapter of the manual for more details.

 ** Octave now features a profiler, thanks to the work of Daniel Kraft
    under the Google Summer of Code mentorship program.  The manual has
    been updated to reflect this addition.  The new user-visible
    functions are profile, profshow, and profexplore.

 ** Overhaul of statistical distribution functions

    Functions now return "single" outputs for inputs of class "single".

    75% reduction in memory usage through use of logical indexing.

    Random sample functions now use the same syntax as rand and accept
    a comma separated list of dimensions or a dimension vector.

    Functions have been made Matlab-compatible with regard to special
    cases (probability on boundaries, probabilities for values outside
    distribution, etc.).  This may cause subtle changes to existing
    scripts.

    negative binomial function has been extended to real, non-integer
    inputs.  The discrete_inv function now returns v(1) for 0 instead of
    NaN.  The nbincdf function has been recoded to use a closed form
    solution with betainc.

 ** strread, textscan, and textread have been completely revamped.

    They now support nearly all Matlab functionality including:

      * Matlab-compatible whitespace and delimiter defaults

      * Matlab-compatible options: 'whitespace', treatasempty', format
        string repeat count, user-specified comment style, uneven-length
        output arrays, %n and %u conversion specifiers (provisionally)

 ** All .m string functions have been modified for better performance or
    greater Matlab compatibility.  Performance gains of 15X-30X have
    been demonstrated.  Operations on cell array of strings no longer pay
    quite as high a penalty as those on 2-D character arrays.

      deblank:  Now requires character or cellstr input.

      strtrim:  Now requires character or cellstr input.
                No longer trims nulls ("\0") from string for Matlab
                compatibility.

      strmatch: Follows documentation precisely and ignores trailing spaces
                in pattern and in string.  Note that this is documented
                Matlab behavior but the implementation apparently does
                not always follow it.

      substr:   Now possible to specify a negative LEN option which
                extracts to within LEN of the end of the string.

      strtok:   Now accepts cellstr input.

      base2dec, bin2dec, hex2dec:
                Now accept cellstr inputs.

      dec2base, dec2bin, dec2hex:
                Now accept cellstr inputs.

      index, rindex:
                Now accept 2-D character array input.

      strsplit: Now accepts 2-D character array input.

 ** Geometry functions derived from Qhull (convhull, delaunay, voronoi)
    have been revamped.  The options passed to the underlying qhull
    command have been changed for better results or for Matlab
    compatibility.

      convhull: Default options are "Qt" for 2D, 3D, 4D inputs
                Default options are "Qt Qx" for 5D and higher

      delaunay: Default options are "Qt Qbb Qc Qz" for 2D and 3D inputs
                Default options are "Qt Qbb Qc Qx" for 4D and higher

      voronoi:  No default arguments

 ** Date/Time functions updated.  Millisecond support with FFF format
    string now supported.

    datestr: Numerical formats 21, 22, 29 changed to match Matlab.
             Now accepts cellstr input.

 ** The following warning IDs have been removed:

      Octave:associativity-change
      Octave:complex-cmp-ops
      Octave:empty-list-elements
      Octave:fortran-indexing
      Octave:precedence-change

 ** The warning ID Octave:string-concat has been renamed to
    Octave:mixed-string-concat.

 ** Octave now includes the following Matlab-compatible preference
    functions:

      addpref  getpref  ispref  rmpref  setpref

 ** The following Matlab-compatible handle graphics functions have been
    added:

      guidata         uipanel        uitoolbar
      guihandles      uipushtool     uiwait
      uicontextmenu   uiresume       waitfor
      uicontrol       uitoggletool

    The uiXXX functions above are experimental.

    Except for uiwait and uiresume, the uiXXX functions are not
    supported with the FLTK+OpenGL graphics toolkit.

    The gnuplot graphics toolkit does not support any of the uiXXX
    functions nor the waitfor function.

 ** New keyword parfor (parallel for loop) is now recognized as a valid
    keyword.  Implementation, however, is still mapped to an ordinary
    for loop.

 ** Other new functions added in 3.6.0:

      bicg                       nthargout                   usejava
      is_dq_string               narginchk                   waitbar
      is_sq_string               python                      zscore
      is_function_handle         register_graphics_toolkit
      loaded_graphics_toolkits   recycle

 ** Deprecated functions.

    The following functions were deprecated in Octave 3.2 and have been
    removed from Octave 3.6.

      create_set          spcholinv    splu
      dmult               spcumprod    spmax
      iscommand           spcumsum     spmin
      israwcommand        spdet        spprod
      lchol               spdiag       spqr
      loadimage           spfind       spsum
      mark_as_command     sphcat       spsumsq
      mark_as_rawcommand  spinv        spvcat
      spatan2             spkron       str2mat
      spchol              splchol      unmark_command
      spchol2inv          split        unmark_rawcommand

    The following functions have been deprecated in Octave 3.6 and will
    be removed from Octave 3.10 (or whatever version is the second major
    release after 3.6):

      cut                is_duplicate_entry
      cor                polyderiv
      corrcoef           shell_cmd
      __error_text__     studentize
      error_text         sylvester_matrix

 ** The following functions have been modified for Matlab compatibility:

      randperm
2012-07-05 19:18:29 +00:00

1830 lines
82 KiB
Text

@comment $NetBSD: PLIST,v 1.24 2012/07/05 19:18:29 asau Exp $
bin/mkoctfile
bin/mkoctfile-${PKGVERSION}
bin/octave
bin/${PKGNAME}
bin/octave-config
bin/octave-config-${PKGVERSION}
include/${PKGNAME}/octave/Array-util.h
include/${PKGNAME}/octave/Array.cc
include/${PKGNAME}/octave/Array.h
include/${PKGNAME}/octave/Array2.h
include/${PKGNAME}/octave/Array3.h
include/${PKGNAME}/octave/ArrayN.h
include/${PKGNAME}/octave/CColVector.h
include/${PKGNAME}/octave/CDiagMatrix.h
include/${PKGNAME}/octave/CMatrix.h
include/${PKGNAME}/octave/CNDArray.h
include/${PKGNAME}/octave/CRowVector.h
include/${PKGNAME}/octave/CSparse.h
include/${PKGNAME}/octave/Cell.h
include/${PKGNAME}/octave/CmplxAEPBAL.h
include/${PKGNAME}/octave/CmplxCHOL.h
include/${PKGNAME}/octave/CmplxGEPBAL.h
include/${PKGNAME}/octave/CmplxHESS.h
include/${PKGNAME}/octave/CmplxLU.h
include/${PKGNAME}/octave/CmplxQR.h
include/${PKGNAME}/octave/CmplxQRP.h
include/${PKGNAME}/octave/CmplxSCHUR.h
include/${PKGNAME}/octave/CmplxSVD.h
include/${PKGNAME}/octave/CollocWt.h
include/${PKGNAME}/octave/DAE.h
include/${PKGNAME}/octave/DAEFunc.h
include/${PKGNAME}/octave/DAERT.h
include/${PKGNAME}/octave/DAERTFunc.h
include/${PKGNAME}/octave/DASPK-opts.h
include/${PKGNAME}/octave/DASPK.h
include/${PKGNAME}/octave/DASRT-opts.h
include/${PKGNAME}/octave/DASRT.h
include/${PKGNAME}/octave/DASSL-opts.h
include/${PKGNAME}/octave/DASSL.h
include/${PKGNAME}/octave/DET.h
include/${PKGNAME}/octave/DiagArray2.cc
include/${PKGNAME}/octave/DiagArray2.h
include/${PKGNAME}/octave/EIG.h
include/${PKGNAME}/octave/LSODE-opts.h
include/${PKGNAME}/octave/LSODE.h
include/${PKGNAME}/octave/MArray-decl.h
include/${PKGNAME}/octave/MArray-defs.h
include/${PKGNAME}/octave/MArray.cc
include/${PKGNAME}/octave/MArray.h
include/${PKGNAME}/octave/MArray2.h
include/${PKGNAME}/octave/MArrayN.h
include/${PKGNAME}/octave/MDiagArray2.cc
include/${PKGNAME}/octave/MDiagArray2.h
include/${PKGNAME}/octave/MSparse-defs.h
include/${PKGNAME}/octave/MSparse.h
include/${PKGNAME}/octave/Matrix.h
include/${PKGNAME}/octave/MatrixType.h
include/${PKGNAME}/octave/ODE.h
include/${PKGNAME}/octave/ODEFunc.h
include/${PKGNAME}/octave/ODES.h
include/${PKGNAME}/octave/ODESFunc.h
include/${PKGNAME}/octave/PermMatrix.h
include/${PKGNAME}/octave/Quad-opts.h
include/${PKGNAME}/octave/Quad.h
include/${PKGNAME}/octave/Range.h
include/${PKGNAME}/octave/Sparse-diag-op-defs.h
include/${PKGNAME}/octave/Sparse-op-defs.h
include/${PKGNAME}/octave/Sparse-perm-op-defs.h
include/${PKGNAME}/octave/Sparse.h
include/${PKGNAME}/octave/SparseCmplxCHOL.h
include/${PKGNAME}/octave/SparseCmplxLU.h
include/${PKGNAME}/octave/SparseCmplxQR.h
include/${PKGNAME}/octave/SparseQR.h
include/${PKGNAME}/octave/SparsedbleCHOL.h
include/${PKGNAME}/octave/SparsedbleLU.h
include/${PKGNAME}/octave/base-aepbal.h
include/${PKGNAME}/octave/base-dae.h
include/${PKGNAME}/octave/base-de.h
include/${PKGNAME}/octave/base-list.h
include/${PKGNAME}/octave/base-lu.cc
include/${PKGNAME}/octave/base-lu.h
include/${PKGNAME}/octave/base-min.h
include/${PKGNAME}/octave/base-qr.cc
include/${PKGNAME}/octave/base-qr.h
include/${PKGNAME}/octave/boolMatrix.h
include/${PKGNAME}/octave/boolNDArray.h
include/${PKGNAME}/octave/boolSparse.h
include/${PKGNAME}/octave/bsxfun-decl.h
include/${PKGNAME}/octave/bsxfun-defs.cc
include/${PKGNAME}/octave/bsxfun.h
include/${PKGNAME}/octave/builtins.h
include/${PKGNAME}/octave/byte-swap.h
include/${PKGNAME}/octave/c-file-ptr-stream.h
include/${PKGNAME}/octave/caseless-str.h
include/${PKGNAME}/octave/chMatrix.h
include/${PKGNAME}/octave/chNDArray.h
include/${PKGNAME}/octave/cmd-edit.h
include/${PKGNAME}/octave/cmd-hist.h
include/${PKGNAME}/octave/comment-list.h
include/${PKGNAME}/octave/config.h
include/${PKGNAME}/octave/cutils.h
include/${PKGNAME}/octave/dColVector.h
include/${PKGNAME}/octave/dDiagMatrix.h
include/${PKGNAME}/octave/dMatrix.h
include/${PKGNAME}/octave/dNDArray.h
include/${PKGNAME}/octave/dRowVector.h
include/${PKGNAME}/octave/dSparse.h
include/${PKGNAME}/octave/data-conv.h
include/${PKGNAME}/octave/data.h
include/${PKGNAME}/octave/dbleAEPBAL.h
include/${PKGNAME}/octave/dbleCHOL.h
include/${PKGNAME}/octave/dbleGEPBAL.h
include/${PKGNAME}/octave/dbleHESS.h
include/${PKGNAME}/octave/dbleLU.h
include/${PKGNAME}/octave/dbleQR.h
include/${PKGNAME}/octave/dbleQRP.h
include/${PKGNAME}/octave/dbleSCHUR.h
include/${PKGNAME}/octave/dbleSVD.h
include/${PKGNAME}/octave/debug.h
include/${PKGNAME}/octave/defaults.h
include/${PKGNAME}/octave/defun-dld.h
include/${PKGNAME}/octave/defun-int.h
include/${PKGNAME}/octave/defun.h
include/${PKGNAME}/octave/dim-vector.h
include/${PKGNAME}/octave/dir-ops.h
include/${PKGNAME}/octave/dirfns.h
include/${PKGNAME}/octave/display.h
include/${PKGNAME}/octave/dynamic-ld.h
include/${PKGNAME}/octave/eigs-base.cc
include/${PKGNAME}/octave/error.h
include/${PKGNAME}/octave/f77-fcn.h
include/${PKGNAME}/octave/fCColVector.h
include/${PKGNAME}/octave/fCDiagMatrix.h
include/${PKGNAME}/octave/fCMatrix.h
include/${PKGNAME}/octave/fCNDArray.h
include/${PKGNAME}/octave/fCRowVector.h
include/${PKGNAME}/octave/fCmplxAEPBAL.h
include/${PKGNAME}/octave/fCmplxCHOL.h
include/${PKGNAME}/octave/fCmplxGEPBAL.h
include/${PKGNAME}/octave/fCmplxHESS.h
include/${PKGNAME}/octave/fCmplxLU.h
include/${PKGNAME}/octave/fCmplxQR.h
include/${PKGNAME}/octave/fCmplxQRP.h
include/${PKGNAME}/octave/fCmplxSCHUR.h
include/${PKGNAME}/octave/fCmplxSVD.h
include/${PKGNAME}/octave/fColVector.h
include/${PKGNAME}/octave/fDiagMatrix.h
include/${PKGNAME}/octave/fEIG.h
include/${PKGNAME}/octave/fMatrix.h
include/${PKGNAME}/octave/fNDArray.h
include/${PKGNAME}/octave/fRowVector.h
include/${PKGNAME}/octave/file-io.h
include/${PKGNAME}/octave/file-ops.h
include/${PKGNAME}/octave/file-stat.h
include/${PKGNAME}/octave/floatAEPBAL.h
include/${PKGNAME}/octave/floatCHOL.h
include/${PKGNAME}/octave/floatGEPBAL.h
include/${PKGNAME}/octave/floatHESS.h
include/${PKGNAME}/octave/floatLU.h
include/${PKGNAME}/octave/floatQR.h
include/${PKGNAME}/octave/floatQRP.h
include/${PKGNAME}/octave/floatSCHUR.h
include/${PKGNAME}/octave/floatSVD.h
include/${PKGNAME}/octave/functor.h
include/${PKGNAME}/octave/gl-render.h
include/${PKGNAME}/octave/gl2ps-renderer.h
include/${PKGNAME}/octave/gl2ps.h
include/${PKGNAME}/octave/glob-match.h
include/${PKGNAME}/octave/graphics-props.cc
include/${PKGNAME}/octave/graphics.h
include/${PKGNAME}/octave/gripes.h
include/${PKGNAME}/octave/help.h
include/${PKGNAME}/octave/idx-vector.h
include/${PKGNAME}/octave/input.h
include/${PKGNAME}/octave/int16NDArray.h
include/${PKGNAME}/octave/int32NDArray.h
include/${PKGNAME}/octave/int64NDArray.h
include/${PKGNAME}/octave/int8NDArray.h
include/${PKGNAME}/octave/intNDArray.cc
include/${PKGNAME}/octave/intNDArray.h
include/${PKGNAME}/octave/kpse.cc
include/${PKGNAME}/octave/lex.h
include/${PKGNAME}/octave/lo-array-gripes.h
include/${PKGNAME}/octave/lo-cutils.h
include/${PKGNAME}/octave/lo-error.h
include/${PKGNAME}/octave/lo-ieee.h
include/${PKGNAME}/octave/lo-macros.h
include/${PKGNAME}/octave/lo-mappers.h
include/${PKGNAME}/octave/lo-math.h
include/${PKGNAME}/octave/lo-specfun.h
include/${PKGNAME}/octave/lo-sysdep.h
include/${PKGNAME}/octave/lo-traits.h
include/${PKGNAME}/octave/lo-utils.h
include/${PKGNAME}/octave/load-path.h
include/${PKGNAME}/octave/load-save.h
include/${PKGNAME}/octave/ls-ascii-helper.h
include/${PKGNAME}/octave/ls-hdf5.h
include/${PKGNAME}/octave/ls-mat-ascii.h
include/${PKGNAME}/octave/ls-mat4.h
include/${PKGNAME}/octave/ls-mat5.h
include/${PKGNAME}/octave/ls-oct-ascii.h
include/${PKGNAME}/octave/ls-oct-binary.h
include/${PKGNAME}/octave/ls-utils.h
include/${PKGNAME}/octave/mach-info.h
include/${PKGNAME}/octave/mex.h
include/${PKGNAME}/octave/mexproto.h
include/${PKGNAME}/octave/mx-base.h
include/${PKGNAME}/octave/mx-cdm-cm.h
include/${PKGNAME}/octave/mx-cdm-dm.h
include/${PKGNAME}/octave/mx-cdm-m.h
include/${PKGNAME}/octave/mx-cdm-s.h
include/${PKGNAME}/octave/mx-cm-cdm.h
include/${PKGNAME}/octave/mx-cm-dm.h
include/${PKGNAME}/octave/mx-cm-m.h
include/${PKGNAME}/octave/mx-cm-pm.h
include/${PKGNAME}/octave/mx-cm-s.h
include/${PKGNAME}/octave/mx-cnda-nda.h
include/${PKGNAME}/octave/mx-cnda-s.h
include/${PKGNAME}/octave/mx-cs-dm.h
include/${PKGNAME}/octave/mx-cs-m.h
include/${PKGNAME}/octave/mx-cs-nda.h
include/${PKGNAME}/octave/mx-defs.h
include/${PKGNAME}/octave/mx-dm-cdm.h
include/${PKGNAME}/octave/mx-dm-cm.h
include/${PKGNAME}/octave/mx-dm-cs.h
include/${PKGNAME}/octave/mx-dm-m.h
include/${PKGNAME}/octave/mx-ext.h
include/${PKGNAME}/octave/mx-fcdm-fcm.h
include/${PKGNAME}/octave/mx-fcdm-fdm.h
include/${PKGNAME}/octave/mx-fcdm-fm.h
include/${PKGNAME}/octave/mx-fcdm-fs.h
include/${PKGNAME}/octave/mx-fcm-fcdm.h
include/${PKGNAME}/octave/mx-fcm-fdm.h
include/${PKGNAME}/octave/mx-fcm-fm.h
include/${PKGNAME}/octave/mx-fcm-fs.h
include/${PKGNAME}/octave/mx-fcm-pm.h
include/${PKGNAME}/octave/mx-fcnda-fnda.h
include/${PKGNAME}/octave/mx-fcnda-fs.h
include/${PKGNAME}/octave/mx-fcs-fdm.h
include/${PKGNAME}/octave/mx-fcs-fm.h
include/${PKGNAME}/octave/mx-fcs-fnda.h
include/${PKGNAME}/octave/mx-fdm-fcdm.h
include/${PKGNAME}/octave/mx-fdm-fcm.h
include/${PKGNAME}/octave/mx-fdm-fcs.h
include/${PKGNAME}/octave/mx-fdm-fm.h
include/${PKGNAME}/octave/mx-fm-fcdm.h
include/${PKGNAME}/octave/mx-fm-fcm.h
include/${PKGNAME}/octave/mx-fm-fcs.h
include/${PKGNAME}/octave/mx-fm-fdm.h
include/${PKGNAME}/octave/mx-fm-pm.h
include/${PKGNAME}/octave/mx-fnda-fcnda.h
include/${PKGNAME}/octave/mx-fnda-fcs.h
include/${PKGNAME}/octave/mx-fnda-i16.h
include/${PKGNAME}/octave/mx-fnda-i16nda.h
include/${PKGNAME}/octave/mx-fnda-i32.h
include/${PKGNAME}/octave/mx-fnda-i32nda.h
include/${PKGNAME}/octave/mx-fnda-i64.h
include/${PKGNAME}/octave/mx-fnda-i64nda.h
include/${PKGNAME}/octave/mx-fnda-i8.h
include/${PKGNAME}/octave/mx-fnda-i8nda.h
include/${PKGNAME}/octave/mx-fnda-ui16.h
include/${PKGNAME}/octave/mx-fnda-ui16nda.h
include/${PKGNAME}/octave/mx-fnda-ui32.h
include/${PKGNAME}/octave/mx-fnda-ui32nda.h
include/${PKGNAME}/octave/mx-fnda-ui64.h
include/${PKGNAME}/octave/mx-fnda-ui64nda.h
include/${PKGNAME}/octave/mx-fnda-ui8.h
include/${PKGNAME}/octave/mx-fnda-ui8nda.h
include/${PKGNAME}/octave/mx-fs-fcdm.h
include/${PKGNAME}/octave/mx-fs-fcm.h
include/${PKGNAME}/octave/mx-fs-fcnda.h
include/${PKGNAME}/octave/mx-fs-i16nda.h
include/${PKGNAME}/octave/mx-fs-i32nda.h
include/${PKGNAME}/octave/mx-fs-i64nda.h
include/${PKGNAME}/octave/mx-fs-i8nda.h
include/${PKGNAME}/octave/mx-fs-ui16nda.h
include/${PKGNAME}/octave/mx-fs-ui32nda.h
include/${PKGNAME}/octave/mx-fs-ui64nda.h
include/${PKGNAME}/octave/mx-fs-ui8nda.h
include/${PKGNAME}/octave/mx-i16-fnda.h
include/${PKGNAME}/octave/mx-i16-i32nda.h
include/${PKGNAME}/octave/mx-i16-i64nda.h
include/${PKGNAME}/octave/mx-i16-i8nda.h
include/${PKGNAME}/octave/mx-i16-nda.h
include/${PKGNAME}/octave/mx-i16-ui16nda.h
include/${PKGNAME}/octave/mx-i16-ui32nda.h
include/${PKGNAME}/octave/mx-i16-ui64nda.h
include/${PKGNAME}/octave/mx-i16-ui8nda.h
include/${PKGNAME}/octave/mx-i16nda-fnda.h
include/${PKGNAME}/octave/mx-i16nda-fs.h
include/${PKGNAME}/octave/mx-i16nda-i32.h
include/${PKGNAME}/octave/mx-i16nda-i32nda.h
include/${PKGNAME}/octave/mx-i16nda-i64.h
include/${PKGNAME}/octave/mx-i16nda-i64nda.h
include/${PKGNAME}/octave/mx-i16nda-i8.h
include/${PKGNAME}/octave/mx-i16nda-i8nda.h
include/${PKGNAME}/octave/mx-i16nda-nda.h
include/${PKGNAME}/octave/mx-i16nda-s.h
include/${PKGNAME}/octave/mx-i16nda-ui16.h
include/${PKGNAME}/octave/mx-i16nda-ui16nda.h
include/${PKGNAME}/octave/mx-i16nda-ui32.h
include/${PKGNAME}/octave/mx-i16nda-ui32nda.h
include/${PKGNAME}/octave/mx-i16nda-ui64.h
include/${PKGNAME}/octave/mx-i16nda-ui64nda.h
include/${PKGNAME}/octave/mx-i16nda-ui8.h
include/${PKGNAME}/octave/mx-i16nda-ui8nda.h
include/${PKGNAME}/octave/mx-i32-fnda.h
include/${PKGNAME}/octave/mx-i32-i16nda.h
include/${PKGNAME}/octave/mx-i32-i64nda.h
include/${PKGNAME}/octave/mx-i32-i8nda.h
include/${PKGNAME}/octave/mx-i32-nda.h
include/${PKGNAME}/octave/mx-i32-ui16nda.h
include/${PKGNAME}/octave/mx-i32-ui32nda.h
include/${PKGNAME}/octave/mx-i32-ui64nda.h
include/${PKGNAME}/octave/mx-i32-ui8nda.h
include/${PKGNAME}/octave/mx-i32nda-fnda.h
include/${PKGNAME}/octave/mx-i32nda-fs.h
include/${PKGNAME}/octave/mx-i32nda-i16.h
include/${PKGNAME}/octave/mx-i32nda-i16nda.h
include/${PKGNAME}/octave/mx-i32nda-i64.h
include/${PKGNAME}/octave/mx-i32nda-i64nda.h
include/${PKGNAME}/octave/mx-i32nda-i8.h
include/${PKGNAME}/octave/mx-i32nda-i8nda.h
include/${PKGNAME}/octave/mx-i32nda-nda.h
include/${PKGNAME}/octave/mx-i32nda-s.h
include/${PKGNAME}/octave/mx-i32nda-ui16.h
include/${PKGNAME}/octave/mx-i32nda-ui16nda.h
include/${PKGNAME}/octave/mx-i32nda-ui32.h
include/${PKGNAME}/octave/mx-i32nda-ui32nda.h
include/${PKGNAME}/octave/mx-i32nda-ui64.h
include/${PKGNAME}/octave/mx-i32nda-ui64nda.h
include/${PKGNAME}/octave/mx-i32nda-ui8.h
include/${PKGNAME}/octave/mx-i32nda-ui8nda.h
include/${PKGNAME}/octave/mx-i64-fnda.h
include/${PKGNAME}/octave/mx-i64-i16nda.h
include/${PKGNAME}/octave/mx-i64-i32nda.h
include/${PKGNAME}/octave/mx-i64-i8nda.h
include/${PKGNAME}/octave/mx-i64-nda.h
include/${PKGNAME}/octave/mx-i64-ui16nda.h
include/${PKGNAME}/octave/mx-i64-ui32nda.h
include/${PKGNAME}/octave/mx-i64-ui64nda.h
include/${PKGNAME}/octave/mx-i64-ui8nda.h
include/${PKGNAME}/octave/mx-i64nda-fnda.h
include/${PKGNAME}/octave/mx-i64nda-fs.h
include/${PKGNAME}/octave/mx-i64nda-i16.h
include/${PKGNAME}/octave/mx-i64nda-i16nda.h
include/${PKGNAME}/octave/mx-i64nda-i32.h
include/${PKGNAME}/octave/mx-i64nda-i32nda.h
include/${PKGNAME}/octave/mx-i64nda-i8.h
include/${PKGNAME}/octave/mx-i64nda-i8nda.h
include/${PKGNAME}/octave/mx-i64nda-nda.h
include/${PKGNAME}/octave/mx-i64nda-s.h
include/${PKGNAME}/octave/mx-i64nda-ui16.h
include/${PKGNAME}/octave/mx-i64nda-ui16nda.h
include/${PKGNAME}/octave/mx-i64nda-ui32.h
include/${PKGNAME}/octave/mx-i64nda-ui32nda.h
include/${PKGNAME}/octave/mx-i64nda-ui64.h
include/${PKGNAME}/octave/mx-i64nda-ui64nda.h
include/${PKGNAME}/octave/mx-i64nda-ui8.h
include/${PKGNAME}/octave/mx-i64nda-ui8nda.h
include/${PKGNAME}/octave/mx-i8-fnda.h
include/${PKGNAME}/octave/mx-i8-i16nda.h
include/${PKGNAME}/octave/mx-i8-i32nda.h
include/${PKGNAME}/octave/mx-i8-i64nda.h
include/${PKGNAME}/octave/mx-i8-nda.h
include/${PKGNAME}/octave/mx-i8-ui16nda.h
include/${PKGNAME}/octave/mx-i8-ui32nda.h
include/${PKGNAME}/octave/mx-i8-ui64nda.h
include/${PKGNAME}/octave/mx-i8-ui8nda.h
include/${PKGNAME}/octave/mx-i8nda-fnda.h
include/${PKGNAME}/octave/mx-i8nda-fs.h
include/${PKGNAME}/octave/mx-i8nda-i16.h
include/${PKGNAME}/octave/mx-i8nda-i16nda.h
include/${PKGNAME}/octave/mx-i8nda-i32.h
include/${PKGNAME}/octave/mx-i8nda-i32nda.h
include/${PKGNAME}/octave/mx-i8nda-i64.h
include/${PKGNAME}/octave/mx-i8nda-i64nda.h
include/${PKGNAME}/octave/mx-i8nda-nda.h
include/${PKGNAME}/octave/mx-i8nda-s.h
include/${PKGNAME}/octave/mx-i8nda-ui16.h
include/${PKGNAME}/octave/mx-i8nda-ui16nda.h
include/${PKGNAME}/octave/mx-i8nda-ui32.h
include/${PKGNAME}/octave/mx-i8nda-ui32nda.h
include/${PKGNAME}/octave/mx-i8nda-ui64.h
include/${PKGNAME}/octave/mx-i8nda-ui64nda.h
include/${PKGNAME}/octave/mx-i8nda-ui8.h
include/${PKGNAME}/octave/mx-i8nda-ui8nda.h
include/${PKGNAME}/octave/mx-inlines.cc
include/${PKGNAME}/octave/mx-m-cdm.h
include/${PKGNAME}/octave/mx-m-cm.h
include/${PKGNAME}/octave/mx-m-cs.h
include/${PKGNAME}/octave/mx-m-dm.h
include/${PKGNAME}/octave/mx-m-pm.h
include/${PKGNAME}/octave/mx-nda-cnda.h
include/${PKGNAME}/octave/mx-nda-cs.h
include/${PKGNAME}/octave/mx-nda-i16.h
include/${PKGNAME}/octave/mx-nda-i16nda.h
include/${PKGNAME}/octave/mx-nda-i32.h
include/${PKGNAME}/octave/mx-nda-i32nda.h
include/${PKGNAME}/octave/mx-nda-i64.h
include/${PKGNAME}/octave/mx-nda-i64nda.h
include/${PKGNAME}/octave/mx-nda-i8.h
include/${PKGNAME}/octave/mx-nda-i8nda.h
include/${PKGNAME}/octave/mx-nda-ui16.h
include/${PKGNAME}/octave/mx-nda-ui16nda.h
include/${PKGNAME}/octave/mx-nda-ui32.h
include/${PKGNAME}/octave/mx-nda-ui32nda.h
include/${PKGNAME}/octave/mx-nda-ui64.h
include/${PKGNAME}/octave/mx-nda-ui64nda.h
include/${PKGNAME}/octave/mx-nda-ui8.h
include/${PKGNAME}/octave/mx-nda-ui8nda.h
include/${PKGNAME}/octave/mx-op-decl.h
include/${PKGNAME}/octave/mx-op-defs.h
include/${PKGNAME}/octave/mx-ops.h
include/${PKGNAME}/octave/mx-pm-cm.h
include/${PKGNAME}/octave/mx-pm-fcm.h
include/${PKGNAME}/octave/mx-pm-fm.h
include/${PKGNAME}/octave/mx-pm-m.h
include/${PKGNAME}/octave/mx-s-cdm.h
include/${PKGNAME}/octave/mx-s-cm.h
include/${PKGNAME}/octave/mx-s-cnda.h
include/${PKGNAME}/octave/mx-s-i16nda.h
include/${PKGNAME}/octave/mx-s-i32nda.h
include/${PKGNAME}/octave/mx-s-i64nda.h
include/${PKGNAME}/octave/mx-s-i8nda.h
include/${PKGNAME}/octave/mx-s-ui16nda.h
include/${PKGNAME}/octave/mx-s-ui32nda.h
include/${PKGNAME}/octave/mx-s-ui64nda.h
include/${PKGNAME}/octave/mx-s-ui8nda.h
include/${PKGNAME}/octave/mx-ui16-fnda.h
include/${PKGNAME}/octave/mx-ui16-i16nda.h
include/${PKGNAME}/octave/mx-ui16-i32nda.h
include/${PKGNAME}/octave/mx-ui16-i64nda.h
include/${PKGNAME}/octave/mx-ui16-i8nda.h
include/${PKGNAME}/octave/mx-ui16-nda.h
include/${PKGNAME}/octave/mx-ui16-ui32nda.h
include/${PKGNAME}/octave/mx-ui16-ui64nda.h
include/${PKGNAME}/octave/mx-ui16-ui8nda.h
include/${PKGNAME}/octave/mx-ui16nda-fnda.h
include/${PKGNAME}/octave/mx-ui16nda-fs.h
include/${PKGNAME}/octave/mx-ui16nda-i16.h
include/${PKGNAME}/octave/mx-ui16nda-i16nda.h
include/${PKGNAME}/octave/mx-ui16nda-i32.h
include/${PKGNAME}/octave/mx-ui16nda-i32nda.h
include/${PKGNAME}/octave/mx-ui16nda-i64.h
include/${PKGNAME}/octave/mx-ui16nda-i64nda.h
include/${PKGNAME}/octave/mx-ui16nda-i8.h
include/${PKGNAME}/octave/mx-ui16nda-i8nda.h
include/${PKGNAME}/octave/mx-ui16nda-nda.h
include/${PKGNAME}/octave/mx-ui16nda-s.h
include/${PKGNAME}/octave/mx-ui16nda-ui32.h
include/${PKGNAME}/octave/mx-ui16nda-ui32nda.h
include/${PKGNAME}/octave/mx-ui16nda-ui64.h
include/${PKGNAME}/octave/mx-ui16nda-ui64nda.h
include/${PKGNAME}/octave/mx-ui16nda-ui8.h
include/${PKGNAME}/octave/mx-ui16nda-ui8nda.h
include/${PKGNAME}/octave/mx-ui32-fnda.h
include/${PKGNAME}/octave/mx-ui32-i16nda.h
include/${PKGNAME}/octave/mx-ui32-i32nda.h
include/${PKGNAME}/octave/mx-ui32-i64nda.h
include/${PKGNAME}/octave/mx-ui32-i8nda.h
include/${PKGNAME}/octave/mx-ui32-nda.h
include/${PKGNAME}/octave/mx-ui32-ui16nda.h
include/${PKGNAME}/octave/mx-ui32-ui64nda.h
include/${PKGNAME}/octave/mx-ui32-ui8nda.h
include/${PKGNAME}/octave/mx-ui32nda-fnda.h
include/${PKGNAME}/octave/mx-ui32nda-fs.h
include/${PKGNAME}/octave/mx-ui32nda-i16.h
include/${PKGNAME}/octave/mx-ui32nda-i16nda.h
include/${PKGNAME}/octave/mx-ui32nda-i32.h
include/${PKGNAME}/octave/mx-ui32nda-i32nda.h
include/${PKGNAME}/octave/mx-ui32nda-i64.h
include/${PKGNAME}/octave/mx-ui32nda-i64nda.h
include/${PKGNAME}/octave/mx-ui32nda-i8.h
include/${PKGNAME}/octave/mx-ui32nda-i8nda.h
include/${PKGNAME}/octave/mx-ui32nda-nda.h
include/${PKGNAME}/octave/mx-ui32nda-s.h
include/${PKGNAME}/octave/mx-ui32nda-ui16.h
include/${PKGNAME}/octave/mx-ui32nda-ui16nda.h
include/${PKGNAME}/octave/mx-ui32nda-ui64.h
include/${PKGNAME}/octave/mx-ui32nda-ui64nda.h
include/${PKGNAME}/octave/mx-ui32nda-ui8.h
include/${PKGNAME}/octave/mx-ui32nda-ui8nda.h
include/${PKGNAME}/octave/mx-ui64-fnda.h
include/${PKGNAME}/octave/mx-ui64-i16nda.h
include/${PKGNAME}/octave/mx-ui64-i32nda.h
include/${PKGNAME}/octave/mx-ui64-i64nda.h
include/${PKGNAME}/octave/mx-ui64-i8nda.h
include/${PKGNAME}/octave/mx-ui64-nda.h
include/${PKGNAME}/octave/mx-ui64-ui16nda.h
include/${PKGNAME}/octave/mx-ui64-ui32nda.h
include/${PKGNAME}/octave/mx-ui64-ui8nda.h
include/${PKGNAME}/octave/mx-ui64nda-fnda.h
include/${PKGNAME}/octave/mx-ui64nda-fs.h
include/${PKGNAME}/octave/mx-ui64nda-i16.h
include/${PKGNAME}/octave/mx-ui64nda-i16nda.h
include/${PKGNAME}/octave/mx-ui64nda-i32.h
include/${PKGNAME}/octave/mx-ui64nda-i32nda.h
include/${PKGNAME}/octave/mx-ui64nda-i64.h
include/${PKGNAME}/octave/mx-ui64nda-i64nda.h
include/${PKGNAME}/octave/mx-ui64nda-i8.h
include/${PKGNAME}/octave/mx-ui64nda-i8nda.h
include/${PKGNAME}/octave/mx-ui64nda-nda.h
include/${PKGNAME}/octave/mx-ui64nda-s.h
include/${PKGNAME}/octave/mx-ui64nda-ui16.h
include/${PKGNAME}/octave/mx-ui64nda-ui16nda.h
include/${PKGNAME}/octave/mx-ui64nda-ui32.h
include/${PKGNAME}/octave/mx-ui64nda-ui32nda.h
include/${PKGNAME}/octave/mx-ui64nda-ui8.h
include/${PKGNAME}/octave/mx-ui64nda-ui8nda.h
include/${PKGNAME}/octave/mx-ui8-fnda.h
include/${PKGNAME}/octave/mx-ui8-i16nda.h
include/${PKGNAME}/octave/mx-ui8-i32nda.h
include/${PKGNAME}/octave/mx-ui8-i64nda.h
include/${PKGNAME}/octave/mx-ui8-i8nda.h
include/${PKGNAME}/octave/mx-ui8-nda.h
include/${PKGNAME}/octave/mx-ui8-ui16nda.h
include/${PKGNAME}/octave/mx-ui8-ui32nda.h
include/${PKGNAME}/octave/mx-ui8-ui64nda.h
include/${PKGNAME}/octave/mx-ui8nda-fnda.h
include/${PKGNAME}/octave/mx-ui8nda-fs.h
include/${PKGNAME}/octave/mx-ui8nda-i16.h
include/${PKGNAME}/octave/mx-ui8nda-i16nda.h
include/${PKGNAME}/octave/mx-ui8nda-i32.h
include/${PKGNAME}/octave/mx-ui8nda-i32nda.h
include/${PKGNAME}/octave/mx-ui8nda-i64.h
include/${PKGNAME}/octave/mx-ui8nda-i64nda.h
include/${PKGNAME}/octave/mx-ui8nda-i8.h
include/${PKGNAME}/octave/mx-ui8nda-i8nda.h
include/${PKGNAME}/octave/mx-ui8nda-nda.h
include/${PKGNAME}/octave/mx-ui8nda-s.h
include/${PKGNAME}/octave/mx-ui8nda-ui16.h
include/${PKGNAME}/octave/mx-ui8nda-ui16nda.h
include/${PKGNAME}/octave/mx-ui8nda-ui32.h
include/${PKGNAME}/octave/mx-ui8nda-ui32nda.h
include/${PKGNAME}/octave/mx-ui8nda-ui64.h
include/${PKGNAME}/octave/mx-ui8nda-ui64nda.h
include/${PKGNAME}/octave/mxarray.h
include/${PKGNAME}/octave/oct-alloc.h
include/${PKGNAME}/octave/oct-binmap.h
include/${PKGNAME}/octave/oct-cmplx.h
include/${PKGNAME}/octave/oct-conf.h
include/${PKGNAME}/octave/oct-convn.h
include/${PKGNAME}/octave/oct-env.h
include/${PKGNAME}/octave/oct-errno.h
include/${PKGNAME}/octave/oct-fftw.h
include/${PKGNAME}/octave/oct-fstrm.h
include/${PKGNAME}/octave/oct-glob.h
include/${PKGNAME}/octave/oct-gperf.h
include/${PKGNAME}/octave/oct-group.h
include/${PKGNAME}/octave/oct-hdf5.h
include/${PKGNAME}/octave/oct-hist.h
include/${PKGNAME}/octave/oct-inttypes.h
include/${PKGNAME}/octave/oct-iostrm.h
include/${PKGNAME}/octave/oct-locbuf.h
include/${PKGNAME}/octave/oct-lvalue.h
include/${PKGNAME}/octave/oct-map.h
include/${PKGNAME}/octave/oct-md5.h
include/${PKGNAME}/octave/oct-mem.h
include/${PKGNAME}/octave/oct-mutex.h
include/${PKGNAME}/octave/oct-norm.h
include/${PKGNAME}/octave/oct-obj.h
include/${PKGNAME}/octave/oct-openmp.h
include/${PKGNAME}/octave/oct-passwd.h
include/${PKGNAME}/octave/oct-prcstrm.h
include/${PKGNAME}/octave/oct-procbuf.h
include/${PKGNAME}/octave/oct-rand.h
include/${PKGNAME}/octave/oct-refcount.h
include/${PKGNAME}/octave/oct-rl-edit.h
include/${PKGNAME}/octave/oct-rl-hist.h
include/${PKGNAME}/octave/oct-shlib.h
include/${PKGNAME}/octave/oct-sort.cc
include/${PKGNAME}/octave/oct-sort.h
include/${PKGNAME}/octave/oct-sparse.h
include/${PKGNAME}/octave/oct-spparms.h
include/${PKGNAME}/octave/oct-stdstrm.h
include/${PKGNAME}/octave/oct-stream.h
include/${PKGNAME}/octave/oct-strstrm.h
include/${PKGNAME}/octave/oct-syscalls.h
include/${PKGNAME}/octave/oct-time.h
include/${PKGNAME}/octave/oct-uname.h
include/${PKGNAME}/octave/oct.h
include/${PKGNAME}/octave/octave.h
include/${PKGNAME}/octave/op-dm-template.cc
include/${PKGNAME}/octave/op-dms-template.cc
include/${PKGNAME}/octave/op-int.h
include/${PKGNAME}/octave/op-pm-template.cc
include/${PKGNAME}/octave/ops.h
include/${PKGNAME}/octave/ov-base-diag.cc
include/${PKGNAME}/octave/ov-base-diag.h
include/${PKGNAME}/octave/ov-base-int.cc
include/${PKGNAME}/octave/ov-base-int.h
include/${PKGNAME}/octave/ov-base-mat.cc
include/${PKGNAME}/octave/ov-base-mat.h
include/${PKGNAME}/octave/ov-base-scalar.cc
include/${PKGNAME}/octave/ov-base-scalar.h
include/${PKGNAME}/octave/ov-base-sparse.h
include/${PKGNAME}/octave/ov-base.h
include/${PKGNAME}/octave/ov-bool-mat.cc
include/${PKGNAME}/octave/ov-bool-mat.h
include/${PKGNAME}/octave/ov-bool-sparse.h
include/${PKGNAME}/octave/ov-bool.h
include/${PKGNAME}/octave/ov-builtin.h
include/${PKGNAME}/octave/ov-cell.h
include/${PKGNAME}/octave/ov-ch-mat.h
include/${PKGNAME}/octave/ov-class.h
include/${PKGNAME}/octave/ov-colon.h
include/${PKGNAME}/octave/ov-complex.h
include/${PKGNAME}/octave/ov-cs-list.h
include/${PKGNAME}/octave/ov-cx-diag.h
include/${PKGNAME}/octave/ov-cx-mat.h
include/${PKGNAME}/octave/ov-cx-sparse.h
include/${PKGNAME}/octave/ov-dld-fcn.h
include/${PKGNAME}/octave/ov-fcn-handle.h
include/${PKGNAME}/octave/ov-fcn-inline.h
include/${PKGNAME}/octave/ov-fcn.h
include/${PKGNAME}/octave/ov-float.h
include/${PKGNAME}/octave/ov-flt-complex.h
include/${PKGNAME}/octave/ov-flt-cx-diag.h
include/${PKGNAME}/octave/ov-flt-cx-mat.h
include/${PKGNAME}/octave/ov-flt-re-diag.h
include/${PKGNAME}/octave/ov-flt-re-mat.h
include/${PKGNAME}/octave/ov-int-traits.h
include/${PKGNAME}/octave/ov-int16.h
include/${PKGNAME}/octave/ov-int32.h
include/${PKGNAME}/octave/ov-int64.h
include/${PKGNAME}/octave/ov-int8.h
include/${PKGNAME}/octave/ov-intx.h
include/${PKGNAME}/octave/ov-lazy-idx.h
include/${PKGNAME}/octave/ov-mex-fcn.h
include/${PKGNAME}/octave/ov-null-mat.h
include/${PKGNAME}/octave/ov-oncleanup.h
include/${PKGNAME}/octave/ov-perm.h
include/${PKGNAME}/octave/ov-range.h
include/${PKGNAME}/octave/ov-re-diag.h
include/${PKGNAME}/octave/ov-re-mat.h
include/${PKGNAME}/octave/ov-re-sparse.h
include/${PKGNAME}/octave/ov-scalar.h
include/${PKGNAME}/octave/ov-str-mat.h
include/${PKGNAME}/octave/ov-struct.h
include/${PKGNAME}/octave/ov-type-conv.h
include/${PKGNAME}/octave/ov-typeinfo.h
include/${PKGNAME}/octave/ov-uint16.h
include/${PKGNAME}/octave/ov-uint32.h
include/${PKGNAME}/octave/ov-uint64.h
include/${PKGNAME}/octave/ov-uint8.h
include/${PKGNAME}/octave/ov-usr-fcn.h
include/${PKGNAME}/octave/ov.h
include/${PKGNAME}/octave/pager.h
include/${PKGNAME}/octave/parse.h
include/${PKGNAME}/octave/pathlen.h
include/${PKGNAME}/octave/pathsearch.h
include/${PKGNAME}/octave/pr-output.h
include/${PKGNAME}/octave/procstream.h
include/${PKGNAME}/octave/profiler.h
include/${PKGNAME}/octave/pt-all.h
include/${PKGNAME}/octave/pt-arg-list.h
include/${PKGNAME}/octave/pt-assign.h
include/${PKGNAME}/octave/pt-binop.h
include/${PKGNAME}/octave/pt-bp.h
include/${PKGNAME}/octave/pt-cbinop.h
include/${PKGNAME}/octave/pt-cell.h
include/${PKGNAME}/octave/pt-check.h
include/${PKGNAME}/octave/pt-cmd.h
include/${PKGNAME}/octave/pt-colon.h
include/${PKGNAME}/octave/pt-const.h
include/${PKGNAME}/octave/pt-decl.h
include/${PKGNAME}/octave/pt-eval.h
include/${PKGNAME}/octave/pt-except.h
include/${PKGNAME}/octave/pt-exp.h
include/${PKGNAME}/octave/pt-fcn-handle.h
include/${PKGNAME}/octave/pt-id.h
include/${PKGNAME}/octave/pt-idx.h
include/${PKGNAME}/octave/pt-jump.h
include/${PKGNAME}/octave/pt-loop.h
include/${PKGNAME}/octave/pt-mat.h
include/${PKGNAME}/octave/pt-misc.h
include/${PKGNAME}/octave/pt-pr-code.h
include/${PKGNAME}/octave/pt-select.h
include/${PKGNAME}/octave/pt-stmt.h
include/${PKGNAME}/octave/pt-unop.h
include/${PKGNAME}/octave/pt-walk.h
include/${PKGNAME}/octave/pt.h
include/${PKGNAME}/octave/quit.h
include/${PKGNAME}/octave/randgamma.h
include/${PKGNAME}/octave/randmtzig.h
include/${PKGNAME}/octave/randpoisson.h
include/${PKGNAME}/octave/regexp.h
include/${PKGNAME}/octave/sighandlers.h
include/${PKGNAME}/octave/siglist.h
include/${PKGNAME}/octave/singleton-cleanup.h
include/${PKGNAME}/octave/smx-bm-sbm.h
include/${PKGNAME}/octave/smx-cm-scm.h
include/${PKGNAME}/octave/smx-cm-sm.h
include/${PKGNAME}/octave/smx-cs-sm.h
include/${PKGNAME}/octave/smx-m-scm.h
include/${PKGNAME}/octave/smx-m-sm.h
include/${PKGNAME}/octave/smx-s-scm.h
include/${PKGNAME}/octave/smx-sbm-bm.h
include/${PKGNAME}/octave/smx-scm-cm.h
include/${PKGNAME}/octave/smx-scm-m.h
include/${PKGNAME}/octave/smx-scm-s.h
include/${PKGNAME}/octave/smx-scm-sm.h
include/${PKGNAME}/octave/smx-sm-cm.h
include/${PKGNAME}/octave/smx-sm-cs.h
include/${PKGNAME}/octave/smx-sm-m.h
include/${PKGNAME}/octave/smx-sm-scm.h
include/${PKGNAME}/octave/sparse-base-chol.cc
include/${PKGNAME}/octave/sparse-base-chol.h
include/${PKGNAME}/octave/sparse-base-lu.cc
include/${PKGNAME}/octave/sparse-base-lu.h
include/${PKGNAME}/octave/sparse-dmsolve.cc
include/${PKGNAME}/octave/sparse-sort.h
include/${PKGNAME}/octave/sparse-util.h
include/${PKGNAME}/octave/sparse-xdiv.h
include/${PKGNAME}/octave/sparse-xpow.h
include/${PKGNAME}/octave/statdefs.h
include/${PKGNAME}/octave/str-vec.h
include/${PKGNAME}/octave/sun-utils.h
include/${PKGNAME}/octave/symtab.h
include/${PKGNAME}/octave/sysdep.h
include/${PKGNAME}/octave/sysdir.h
include/${PKGNAME}/octave/syswait.h
include/${PKGNAME}/octave/token.h
include/${PKGNAME}/octave/toplev.h
include/${PKGNAME}/octave/txt-eng-ft.h
include/${PKGNAME}/octave/txt-eng.h
include/${PKGNAME}/octave/uint16NDArray.h
include/${PKGNAME}/octave/uint32NDArray.h
include/${PKGNAME}/octave/uint64NDArray.h
include/${PKGNAME}/octave/uint8NDArray.h
include/${PKGNAME}/octave/unwind-prot.h
include/${PKGNAME}/octave/utils.h
include/${PKGNAME}/octave/variables.h
include/${PKGNAME}/octave/version.h
include/${PKGNAME}/octave/vx-ccv-cv.h
include/${PKGNAME}/octave/vx-ccv-s.h
include/${PKGNAME}/octave/vx-crv-rv.h
include/${PKGNAME}/octave/vx-crv-s.h
include/${PKGNAME}/octave/vx-cs-cv.h
include/${PKGNAME}/octave/vx-cs-rv.h
include/${PKGNAME}/octave/vx-cv-ccv.h
include/${PKGNAME}/octave/vx-cv-cs.h
include/${PKGNAME}/octave/vx-fccv-fcv.h
include/${PKGNAME}/octave/vx-fccv-fs.h
include/${PKGNAME}/octave/vx-fcrv-frv.h
include/${PKGNAME}/octave/vx-fcrv-fs.h
include/${PKGNAME}/octave/vx-fcs-fcv.h
include/${PKGNAME}/octave/vx-fcs-frv.h
include/${PKGNAME}/octave/vx-fcv-fccv.h
include/${PKGNAME}/octave/vx-fcv-fcs.h
include/${PKGNAME}/octave/vx-frv-fcrv.h
include/${PKGNAME}/octave/vx-frv-fcs.h
include/${PKGNAME}/octave/vx-fs-fccv.h
include/${PKGNAME}/octave/vx-fs-fcrv.h
include/${PKGNAME}/octave/vx-rv-crv.h
include/${PKGNAME}/octave/vx-rv-cs.h
include/${PKGNAME}/octave/vx-s-ccv.h
include/${PKGNAME}/octave/vx-s-crv.h
include/${PKGNAME}/octave/xdiv.h
include/${PKGNAME}/octave/xnorm.h
include/${PKGNAME}/octave/xpow.h
include/${PKGNAME}/octave/zfstream.h
info/OctaveFAQ.info
info/liboctave.info
info/octave.info
lib/charset.alias
lib/octave/${PKGVERSION}/__contourc__.a
lib/octave/${PKGVERSION}/__delaunayn__.a
lib/octave/${PKGVERSION}/__dispatch__.a
lib/octave/${PKGVERSION}/__dsearchn__.a
lib/octave/${PKGVERSION}/__fltk_uigetfile__.a
lib/octave/${PKGVERSION}/__glpk__.a
lib/octave/${PKGVERSION}/__init_fltk__.a
lib/octave/${PKGVERSION}/__init_gnuplot__.a
lib/octave/${PKGVERSION}/__lin_interpn__.a
lib/octave/${PKGVERSION}/__magick_read__.a
lib/octave/${PKGVERSION}/__pchip_deriv__.a
lib/octave/${PKGVERSION}/__qp__.a
lib/octave/${PKGVERSION}/__voronoi__.a
lib/octave/${PKGVERSION}/amd.a
lib/octave/${PKGVERSION}/balance.a
lib/octave/${PKGVERSION}/besselj.a
lib/octave/${PKGVERSION}/betainc.a
lib/octave/${PKGVERSION}/bsxfun.a
lib/octave/${PKGVERSION}/ccolamd.a
lib/octave/${PKGVERSION}/cellfun.a
lib/octave/${PKGVERSION}/chol.a
lib/octave/${PKGVERSION}/colamd.a
lib/octave/${PKGVERSION}/colloc.a
lib/octave/${PKGVERSION}/conv2.a
lib/octave/${PKGVERSION}/convhulln.a
lib/octave/${PKGVERSION}/daspk.a
lib/octave/${PKGVERSION}/dasrt.a
lib/octave/${PKGVERSION}/dassl.a
lib/octave/${PKGVERSION}/det.a
lib/octave/${PKGVERSION}/dlmread.a
lib/octave/${PKGVERSION}/dmperm.a
lib/octave/${PKGVERSION}/dot.a
lib/octave/${PKGVERSION}/eig.a
lib/octave/${PKGVERSION}/eigs.a
lib/octave/${PKGVERSION}/fft.a
lib/octave/${PKGVERSION}/fft2.a
lib/octave/${PKGVERSION}/fftn.a
lib/octave/${PKGVERSION}/fftw.a
lib/octave/${PKGVERSION}/filter.a
lib/octave/${PKGVERSION}/find.a
lib/octave/${PKGVERSION}/gammainc.a
lib/octave/${PKGVERSION}/gcd.a
lib/octave/${PKGVERSION}/getgrent.a
lib/octave/${PKGVERSION}/getpwent.a
lib/octave/${PKGVERSION}/getrusage.a
lib/octave/${PKGVERSION}/givens.a
lib/octave/${PKGVERSION}/hess.a
lib/octave/${PKGVERSION}/hex2num.a
lib/octave/${PKGVERSION}/inv.a
lib/octave/${PKGVERSION}/kron.a
lib/octave/${PKGVERSION}/libcruft.la
lib/octave/${PKGVERSION}/liboctave.la
lib/octave/${PKGVERSION}/liboctinterp.la
lib/octave/${PKGVERSION}/lookup.a
lib/octave/${PKGVERSION}/lsode.a
lib/octave/${PKGVERSION}/lu.a
lib/octave/${PKGVERSION}/luinc.a
lib/octave/${PKGVERSION}/matrix_type.a
lib/octave/${PKGVERSION}/max.a
lib/octave/${PKGVERSION}/md5sum.a
lib/octave/${PKGVERSION}/mgorth.a
lib/octave/${PKGVERSION}/nproc.a
lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/PKG_ADD
lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/__contourc__.oct
lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/__delaunayn__.oct
lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/__dispatch__.oct
lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/__dsearchn__.oct
lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/__fltk_uigetfile__.oct
lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/__glpk__.oct
lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/__init_fltk__.oct
lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/__init_gnuplot__.oct
lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/__lin_interpn__.oct
lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/__magick_read__.oct
lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/__pchip_deriv__.oct
lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/__qp__.oct
lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/__voronoi__.oct
lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/amd.oct
lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/balance.oct
lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/besselj.oct
lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/betainc.oct
lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/bsxfun.oct
lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/ccolamd.oct
lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/cellfun.oct
lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/chol.oct
lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/colamd.oct
lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/colloc.oct
lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/conv2.oct
lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/convhulln.oct
lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/daspk.oct
lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/dasrt.oct
lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/dassl.oct
lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/det.oct
lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/dlmread.oct
lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/dmperm.oct
lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/dot.oct
lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/eig.oct
lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/eigs.oct
lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/fft.oct
lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/fft2.oct
lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/fftn.oct
lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/fftw.oct
lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/filter.oct
lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/find.oct
lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/gammainc.oct
lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/gcd.oct
lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/getgrent.oct
lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/getpwent.oct
lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/getrusage.oct
lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/givens.oct
lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/hess.oct
lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/hex2num.oct
lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/inv.oct
lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/kron.oct
lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/lookup.oct
lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/lsode.oct
lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/lu.oct
lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/luinc.oct
lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/matrix_type.oct
lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/max.oct
lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/md5sum.oct
lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/mgorth.oct
lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/nproc.oct
lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/pinv.oct
lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/qr.oct
lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/quad.oct
lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/quadcc.oct
lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/qz.oct
lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/rand.oct
lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/rcond.oct
lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/regexp.oct
lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/schur.oct
lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/spparms.oct
lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/sqrtm.oct
lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/str2double.oct
lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/strfind.oct
lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/sub2ind.oct
lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/svd.oct
lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/syl.oct
lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/symbfact.oct
lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/symrcm.oct
lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/time.oct
lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/tril.oct
lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/tsearch.oct
lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/typecast.oct
lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/urlwrite.oct
lib/octave/${PKGVERSION}/pinv.a
lib/octave/${PKGVERSION}/qr.a
lib/octave/${PKGVERSION}/quad.a
lib/octave/${PKGVERSION}/quadcc.a
lib/octave/${PKGVERSION}/qz.a
lib/octave/${PKGVERSION}/rand.a
lib/octave/${PKGVERSION}/rcond.a
lib/octave/${PKGVERSION}/regexp.a
lib/octave/${PKGVERSION}/schur.a
lib/octave/${PKGVERSION}/spparms.a
lib/octave/${PKGVERSION}/sqrtm.a
lib/octave/${PKGVERSION}/str2double.a
lib/octave/${PKGVERSION}/strfind.a
lib/octave/${PKGVERSION}/sub2ind.a
lib/octave/${PKGVERSION}/svd.a
lib/octave/${PKGVERSION}/syl.a
lib/octave/${PKGVERSION}/symbfact.a
lib/octave/${PKGVERSION}/symrcm.a
lib/octave/${PKGVERSION}/time.a
lib/octave/${PKGVERSION}/tril.a
lib/octave/${PKGVERSION}/tsearch.a
lib/octave/${PKGVERSION}/typecast.a
lib/octave/${PKGVERSION}/urlwrite.a
man/man1/mkoctfile.1
man/man1/octave-config.1
man/man1/octave.1
share/applications/www.octave.org-octave.desktop
share/octave/${PKGVERSION}/etc/NEWS
share/octave/${PKGVERSION}/etc/doc-cache
share/octave/${PKGVERSION}/imagelib/default.img
share/octave/${PKGVERSION}/imagelib/octave-logo.ico
share/octave/${PKGVERSION}/imagelib/octave-logo.png
share/octave/${PKGVERSION}/imagelib/octave-logo.svg
share/octave/${PKGVERSION}/imagelib/octave-sombrero.png
share/octave/${PKGVERSION}/m/@ftp/ascii.m
share/octave/${PKGVERSION}/m/@ftp/binary.m
share/octave/${PKGVERSION}/m/@ftp/cd.m
share/octave/${PKGVERSION}/m/@ftp/close.m
share/octave/${PKGVERSION}/m/@ftp/delete.m
share/octave/${PKGVERSION}/m/@ftp/dir.m
share/octave/${PKGVERSION}/m/@ftp/display.m
share/octave/${PKGVERSION}/m/@ftp/ftp.m
share/octave/${PKGVERSION}/m/@ftp/loadobj.m
share/octave/${PKGVERSION}/m/@ftp/mget.m
share/octave/${PKGVERSION}/m/@ftp/mkdir.m
share/octave/${PKGVERSION}/m/@ftp/mput.m
share/octave/${PKGVERSION}/m/@ftp/rename.m
share/octave/${PKGVERSION}/m/@ftp/rmdir.m
share/octave/${PKGVERSION}/m/@ftp/saveobj.m
share/octave/${PKGVERSION}/m/audio/lin2mu.m
share/octave/${PKGVERSION}/m/audio/loadaudio.m
share/octave/${PKGVERSION}/m/audio/mu2lin.m
share/octave/${PKGVERSION}/m/audio/playaudio.m
share/octave/${PKGVERSION}/m/audio/record.m
share/octave/${PKGVERSION}/m/audio/saveaudio.m
share/octave/${PKGVERSION}/m/audio/setaudio.m
share/octave/${PKGVERSION}/m/audio/wavread.m
share/octave/${PKGVERSION}/m/audio/wavwrite.m
share/octave/${PKGVERSION}/m/deprecated/__error_text__.m
share/octave/${PKGVERSION}/m/deprecated/autocor.m
share/octave/${PKGVERSION}/m/deprecated/autocov.m
share/octave/${PKGVERSION}/m/deprecated/betai.m
share/octave/${PKGVERSION}/m/deprecated/cellidx.m
share/octave/${PKGVERSION}/m/deprecated/clg.m
share/octave/${PKGVERSION}/m/deprecated/cor.m
share/octave/${PKGVERSION}/m/deprecated/corrcoef.m
share/octave/${PKGVERSION}/m/deprecated/cquad.m
share/octave/${PKGVERSION}/m/deprecated/cut.m
share/octave/${PKGVERSION}/m/deprecated/dispatch.m
share/octave/${PKGVERSION}/m/deprecated/error_text.m
share/octave/${PKGVERSION}/m/deprecated/fstat.m
share/octave/${PKGVERSION}/m/deprecated/gammai.m
share/octave/${PKGVERSION}/m/deprecated/glpkmex.m
share/octave/${PKGVERSION}/m/deprecated/intwarning.m
share/octave/${PKGVERSION}/m/deprecated/is_duplicate_entry.m
share/octave/${PKGVERSION}/m/deprecated/is_global.m
share/octave/${PKGVERSION}/m/deprecated/isstr.m
share/octave/${PKGVERSION}/m/deprecated/krylovb.m
share/octave/${PKGVERSION}/m/deprecated/perror.m
share/octave/${PKGVERSION}/m/deprecated/polyderiv.m
share/octave/${PKGVERSION}/m/deprecated/replot.m
share/octave/${PKGVERSION}/m/deprecated/saveimage.m
share/octave/${PKGVERSION}/m/deprecated/setstr.m
share/octave/${PKGVERSION}/m/deprecated/shell_cmd.m
share/octave/${PKGVERSION}/m/deprecated/strerror.m
share/octave/${PKGVERSION}/m/deprecated/studentize.m
share/octave/${PKGVERSION}/m/deprecated/sylvester_matrix.m
share/octave/${PKGVERSION}/m/deprecated/values.m
share/octave/${PKGVERSION}/m/deprecated/weibcdf.m
share/octave/${PKGVERSION}/m/deprecated/weibinv.m
share/octave/${PKGVERSION}/m/deprecated/weibpdf.m
share/octave/${PKGVERSION}/m/deprecated/weibrnd.m
share/octave/${PKGVERSION}/m/elfun/acosd.m
share/octave/${PKGVERSION}/m/elfun/acot.m
share/octave/${PKGVERSION}/m/elfun/acotd.m
share/octave/${PKGVERSION}/m/elfun/acoth.m
share/octave/${PKGVERSION}/m/elfun/acsc.m
share/octave/${PKGVERSION}/m/elfun/acscd.m
share/octave/${PKGVERSION}/m/elfun/acsch.m
share/octave/${PKGVERSION}/m/elfun/asec.m
share/octave/${PKGVERSION}/m/elfun/asecd.m
share/octave/${PKGVERSION}/m/elfun/asech.m
share/octave/${PKGVERSION}/m/elfun/asind.m
share/octave/${PKGVERSION}/m/elfun/atand.m
share/octave/${PKGVERSION}/m/elfun/cosd.m
share/octave/${PKGVERSION}/m/elfun/cot.m
share/octave/${PKGVERSION}/m/elfun/cotd.m
share/octave/${PKGVERSION}/m/elfun/coth.m
share/octave/${PKGVERSION}/m/elfun/csc.m
share/octave/${PKGVERSION}/m/elfun/cscd.m
share/octave/${PKGVERSION}/m/elfun/csch.m
share/octave/${PKGVERSION}/m/elfun/sec.m
share/octave/${PKGVERSION}/m/elfun/secd.m
share/octave/${PKGVERSION}/m/elfun/sech.m
share/octave/${PKGVERSION}/m/elfun/sind.m
share/octave/${PKGVERSION}/m/elfun/tand.m
share/octave/${PKGVERSION}/m/general/accumarray.m
share/octave/${PKGVERSION}/m/general/accumdim.m
share/octave/${PKGVERSION}/m/general/bicubic.m
share/octave/${PKGVERSION}/m/general/bitcmp.m
share/octave/${PKGVERSION}/m/general/bitget.m
share/octave/${PKGVERSION}/m/general/bitset.m
share/octave/${PKGVERSION}/m/general/blkdiag.m
share/octave/${PKGVERSION}/m/general/cart2pol.m
share/octave/${PKGVERSION}/m/general/cart2sph.m
share/octave/${PKGVERSION}/m/general/cell2mat.m
share/octave/${PKGVERSION}/m/general/celldisp.m
share/octave/${PKGVERSION}/m/general/chop.m
share/octave/${PKGVERSION}/m/general/circshift.m
share/octave/${PKGVERSION}/m/general/colon.m
share/octave/${PKGVERSION}/m/general/common_size.m
share/octave/${PKGVERSION}/m/general/cplxpair.m
share/octave/${PKGVERSION}/m/general/cumtrapz.m
share/octave/${PKGVERSION}/m/general/curl.m
share/octave/${PKGVERSION}/m/general/dblquad.m
share/octave/${PKGVERSION}/m/general/deal.m
share/octave/${PKGVERSION}/m/general/del2.m
share/octave/${PKGVERSION}/m/general/display.m
share/octave/${PKGVERSION}/m/general/divergence.m
share/octave/${PKGVERSION}/m/general/flipdim.m
share/octave/${PKGVERSION}/m/general/fliplr.m
share/octave/${PKGVERSION}/m/general/flipud.m
share/octave/${PKGVERSION}/m/general/genvarname.m
share/octave/${PKGVERSION}/m/general/gradient.m
share/octave/${PKGVERSION}/m/general/idivide.m
share/octave/${PKGVERSION}/m/general/int2str.m
share/octave/${PKGVERSION}/m/general/interp1.m
share/octave/${PKGVERSION}/m/general/interp1q.m
share/octave/${PKGVERSION}/m/general/interp2.m
share/octave/${PKGVERSION}/m/general/interp3.m
share/octave/${PKGVERSION}/m/general/interpft.m
share/octave/${PKGVERSION}/m/general/interpn.m
share/octave/${PKGVERSION}/m/general/isa.m
share/octave/${PKGVERSION}/m/general/iscolumn.m
share/octave/${PKGVERSION}/m/general/isdir.m
share/octave/${PKGVERSION}/m/general/isequal.m
share/octave/${PKGVERSION}/m/general/isequalwithequalnans.m
share/octave/${PKGVERSION}/m/general/isrow.m
share/octave/${PKGVERSION}/m/general/isscalar.m
share/octave/${PKGVERSION}/m/general/issquare.m
share/octave/${PKGVERSION}/m/general/isvector.m
share/octave/${PKGVERSION}/m/general/loadobj.m
share/octave/${PKGVERSION}/m/general/logspace.m
share/octave/${PKGVERSION}/m/general/nargchk.m
share/octave/${PKGVERSION}/m/general/narginchk.m
share/octave/${PKGVERSION}/m/general/nargoutchk.m
share/octave/${PKGVERSION}/m/general/nextpow2.m
share/octave/${PKGVERSION}/m/general/nthargout.m
share/octave/${PKGVERSION}/m/general/num2str.m
share/octave/${PKGVERSION}/m/general/pol2cart.m
share/octave/${PKGVERSION}/m/general/polyarea.m
share/octave/${PKGVERSION}/m/general/postpad.m
share/octave/${PKGVERSION}/m/general/prepad.m
share/octave/${PKGVERSION}/m/general/private/__isequal__.m
share/octave/${PKGVERSION}/m/general/private/__splinen__.m
share/octave/${PKGVERSION}/m/general/profexplore.m
share/octave/${PKGVERSION}/m/general/profile.m
share/octave/${PKGVERSION}/m/general/profshow.m
share/octave/${PKGVERSION}/m/general/quadgk.m
share/octave/${PKGVERSION}/m/general/quadl.m
share/octave/${PKGVERSION}/m/general/quadv.m
share/octave/${PKGVERSION}/m/general/randi.m
share/octave/${PKGVERSION}/m/general/rat.m
share/octave/${PKGVERSION}/m/general/repmat.m
share/octave/${PKGVERSION}/m/general/rot90.m
share/octave/${PKGVERSION}/m/general/rotdim.m
share/octave/${PKGVERSION}/m/general/saveobj.m
share/octave/${PKGVERSION}/m/general/shift.m
share/octave/${PKGVERSION}/m/general/shiftdim.m
share/octave/${PKGVERSION}/m/general/sortrows.m
share/octave/${PKGVERSION}/m/general/sph2cart.m
share/octave/${PKGVERSION}/m/general/structfun.m
share/octave/${PKGVERSION}/m/general/subsindex.m
share/octave/${PKGVERSION}/m/general/trapz.m
share/octave/${PKGVERSION}/m/general/triplequad.m
share/octave/${PKGVERSION}/m/geometry/convhull.m
share/octave/${PKGVERSION}/m/geometry/delaunay.m
share/octave/${PKGVERSION}/m/geometry/delaunay3.m
share/octave/${PKGVERSION}/m/geometry/delaunayn.m
share/octave/${PKGVERSION}/m/geometry/dsearch.m
share/octave/${PKGVERSION}/m/geometry/dsearchn.m
share/octave/${PKGVERSION}/m/geometry/griddata.m
share/octave/${PKGVERSION}/m/geometry/griddata3.m
share/octave/${PKGVERSION}/m/geometry/griddatan.m
share/octave/${PKGVERSION}/m/geometry/inpolygon.m
share/octave/${PKGVERSION}/m/geometry/rectint.m
share/octave/${PKGVERSION}/m/geometry/tsearchn.m
share/octave/${PKGVERSION}/m/geometry/voronoi.m
share/octave/${PKGVERSION}/m/geometry/voronoin.m
share/octave/${PKGVERSION}/m/help/__makeinfo__.m
share/octave/${PKGVERSION}/m/help/doc.m
share/octave/${PKGVERSION}/m/help/gen_doc_cache.m
share/octave/${PKGVERSION}/m/help/get_first_help_sentence.m
share/octave/${PKGVERSION}/m/help/help.m
share/octave/${PKGVERSION}/m/help/lookfor.m
share/octave/${PKGVERSION}/m/help/print_usage.m
share/octave/${PKGVERSION}/m/help/private/__additional_help_message__.m
share/octave/${PKGVERSION}/m/help/private/__strip_html_tags__.m
share/octave/${PKGVERSION}/m/help/type.m
share/octave/${PKGVERSION}/m/help/unimplemented.m
share/octave/${PKGVERSION}/m/help/which.m
share/octave/${PKGVERSION}/m/image/autumn.m
share/octave/${PKGVERSION}/m/image/bone.m
share/octave/${PKGVERSION}/m/image/brighten.m
share/octave/${PKGVERSION}/m/image/colormap.m
share/octave/${PKGVERSION}/m/image/contrast.m
share/octave/${PKGVERSION}/m/image/cool.m
share/octave/${PKGVERSION}/m/image/copper.m
share/octave/${PKGVERSION}/m/image/flag.m
share/octave/${PKGVERSION}/m/image/gmap40.m
share/octave/${PKGVERSION}/m/image/gray.m
share/octave/${PKGVERSION}/m/image/gray2ind.m
share/octave/${PKGVERSION}/m/image/hot.m
share/octave/${PKGVERSION}/m/image/hsv.m
share/octave/${PKGVERSION}/m/image/hsv2rgb.m
share/octave/${PKGVERSION}/m/image/image.m
share/octave/${PKGVERSION}/m/image/imagesc.m
share/octave/${PKGVERSION}/m/image/imfinfo.m
share/octave/${PKGVERSION}/m/image/imread.m
share/octave/${PKGVERSION}/m/image/imshow.m
share/octave/${PKGVERSION}/m/image/imwrite.m
share/octave/${PKGVERSION}/m/image/ind2gray.m
share/octave/${PKGVERSION}/m/image/ind2rgb.m
share/octave/${PKGVERSION}/m/image/jet.m
share/octave/${PKGVERSION}/m/image/ntsc2rgb.m
share/octave/${PKGVERSION}/m/image/ocean.m
share/octave/${PKGVERSION}/m/image/pink.m
share/octave/${PKGVERSION}/m/image/prism.m
share/octave/${PKGVERSION}/m/image/rainbow.m
share/octave/${PKGVERSION}/m/image/rgb2hsv.m
share/octave/${PKGVERSION}/m/image/rgb2ind.m
share/octave/${PKGVERSION}/m/image/rgb2ntsc.m
share/octave/${PKGVERSION}/m/image/spring.m
share/octave/${PKGVERSION}/m/image/summer.m
share/octave/${PKGVERSION}/m/image/white.m
share/octave/${PKGVERSION}/m/image/winter.m
share/octave/${PKGVERSION}/m/io/beep.m
share/octave/${PKGVERSION}/m/io/csvread.m
share/octave/${PKGVERSION}/m/io/csvwrite.m
share/octave/${PKGVERSION}/m/io/dlmwrite.m
share/octave/${PKGVERSION}/m/io/fileread.m
share/octave/${PKGVERSION}/m/io/is_valid_file_id.m
share/octave/${PKGVERSION}/m/io/strread.m
share/octave/${PKGVERSION}/m/io/textread.m
share/octave/${PKGVERSION}/m/io/textscan.m
share/octave/${PKGVERSION}/m/linear-algebra/commutation_matrix.m
share/octave/${PKGVERSION}/m/linear-algebra/cond.m
share/octave/${PKGVERSION}/m/linear-algebra/condest.m
share/octave/${PKGVERSION}/m/linear-algebra/cross.m
share/octave/${PKGVERSION}/m/linear-algebra/duplication_matrix.m
share/octave/${PKGVERSION}/m/linear-algebra/expm.m
share/octave/${PKGVERSION}/m/linear-algebra/housh.m
share/octave/${PKGVERSION}/m/linear-algebra/isdefinite.m
share/octave/${PKGVERSION}/m/linear-algebra/ishermitian.m
share/octave/${PKGVERSION}/m/linear-algebra/issymmetric.m
share/octave/${PKGVERSION}/m/linear-algebra/krylov.m
share/octave/${PKGVERSION}/m/linear-algebra/logm.m
share/octave/${PKGVERSION}/m/linear-algebra/normest.m
share/octave/${PKGVERSION}/m/linear-algebra/null.m
share/octave/${PKGVERSION}/m/linear-algebra/onenormest.m
share/octave/${PKGVERSION}/m/linear-algebra/orth.m
share/octave/${PKGVERSION}/m/linear-algebra/planerot.m
share/octave/${PKGVERSION}/m/linear-algebra/qzhess.m
share/octave/${PKGVERSION}/m/linear-algebra/rank.m
share/octave/${PKGVERSION}/m/linear-algebra/rref.m
share/octave/${PKGVERSION}/m/linear-algebra/subspace.m
share/octave/${PKGVERSION}/m/linear-algebra/trace.m
share/octave/${PKGVERSION}/m/linear-algebra/vech.m
share/octave/${PKGVERSION}/m/miscellaneous/ans.m
share/octave/${PKGVERSION}/m/miscellaneous/bincoeff.m
share/octave/${PKGVERSION}/m/miscellaneous/bug_report.m
share/octave/${PKGVERSION}/m/miscellaneous/bunzip2.m
share/octave/${PKGVERSION}/m/miscellaneous/bzip2.m
share/octave/${PKGVERSION}/m/miscellaneous/cast.m
share/octave/${PKGVERSION}/m/miscellaneous/comma.m
share/octave/${PKGVERSION}/m/miscellaneous/compare_versions.m
share/octave/${PKGVERSION}/m/miscellaneous/computer.m
share/octave/${PKGVERSION}/m/miscellaneous/copyfile.m
share/octave/${PKGVERSION}/m/miscellaneous/debug.m
share/octave/${PKGVERSION}/m/miscellaneous/delete.m
share/octave/${PKGVERSION}/m/miscellaneous/dir.m
share/octave/${PKGVERSION}/m/miscellaneous/dos.m
share/octave/${PKGVERSION}/m/miscellaneous/dump_prefs.m
share/octave/${PKGVERSION}/m/miscellaneous/edit.m
share/octave/${PKGVERSION}/m/miscellaneous/fact.m
share/octave/${PKGVERSION}/m/miscellaneous/fileattrib.m
share/octave/${PKGVERSION}/m/miscellaneous/fileparts.m
share/octave/${PKGVERSION}/m/miscellaneous/fullfile.m
share/octave/${PKGVERSION}/m/miscellaneous/getappdata.m
share/octave/${PKGVERSION}/m/miscellaneous/getfield.m
share/octave/${PKGVERSION}/m/miscellaneous/gunzip.m
share/octave/${PKGVERSION}/m/miscellaneous/gzip.m
share/octave/${PKGVERSION}/m/miscellaneous/info.m
share/octave/${PKGVERSION}/m/miscellaneous/inputname.m
share/octave/${PKGVERSION}/m/miscellaneous/isappdata.m
share/octave/${PKGVERSION}/m/miscellaneous/isdeployed.m
share/octave/${PKGVERSION}/m/miscellaneous/ismac.m
share/octave/${PKGVERSION}/m/miscellaneous/ispc.m
share/octave/${PKGVERSION}/m/miscellaneous/isunix.m
share/octave/${PKGVERSION}/m/miscellaneous/license.m
share/octave/${PKGVERSION}/m/miscellaneous/list_primes.m
share/octave/${PKGVERSION}/m/miscellaneous/ls.m
share/octave/${PKGVERSION}/m/miscellaneous/ls_command.m
share/octave/${PKGVERSION}/m/miscellaneous/menu.m
share/octave/${PKGVERSION}/m/miscellaneous/mex.m
share/octave/${PKGVERSION}/m/miscellaneous/mexext.m
share/octave/${PKGVERSION}/m/miscellaneous/mkoctfile.m
share/octave/${PKGVERSION}/m/miscellaneous/movefile.m
share/octave/${PKGVERSION}/m/miscellaneous/namelengthmax.m
share/octave/${PKGVERSION}/m/miscellaneous/news.m
share/octave/${PKGVERSION}/m/miscellaneous/orderfields.m
share/octave/${PKGVERSION}/m/miscellaneous/pack.m
share/octave/${PKGVERSION}/m/miscellaneous/paren.m
share/octave/${PKGVERSION}/m/miscellaneous/parseparams.m
share/octave/${PKGVERSION}/m/miscellaneous/perl.m
share/octave/${PKGVERSION}/m/miscellaneous/private/__xzip__.m
share/octave/${PKGVERSION}/m/miscellaneous/python.m
share/octave/${PKGVERSION}/m/miscellaneous/recycle.m
share/octave/${PKGVERSION}/m/miscellaneous/rmappdata.m
share/octave/${PKGVERSION}/m/miscellaneous/run.m
share/octave/${PKGVERSION}/m/miscellaneous/semicolon.m
share/octave/${PKGVERSION}/m/miscellaneous/setappdata.m
share/octave/${PKGVERSION}/m/miscellaneous/setfield.m
share/octave/${PKGVERSION}/m/miscellaneous/substruct.m
share/octave/${PKGVERSION}/m/miscellaneous/swapbytes.m
share/octave/${PKGVERSION}/m/miscellaneous/symvar.m
share/octave/${PKGVERSION}/m/miscellaneous/tar.m
share/octave/${PKGVERSION}/m/miscellaneous/tempdir.m
share/octave/${PKGVERSION}/m/miscellaneous/tempname.m
share/octave/${PKGVERSION}/m/miscellaneous/unix.m
share/octave/${PKGVERSION}/m/miscellaneous/unpack.m
share/octave/${PKGVERSION}/m/miscellaneous/untar.m
share/octave/${PKGVERSION}/m/miscellaneous/unzip.m
share/octave/${PKGVERSION}/m/miscellaneous/usejava.m
share/octave/${PKGVERSION}/m/miscellaneous/ver.m
share/octave/${PKGVERSION}/m/miscellaneous/version.m
share/octave/${PKGVERSION}/m/miscellaneous/warning_ids.m
share/octave/${PKGVERSION}/m/miscellaneous/what.m
share/octave/${PKGVERSION}/m/miscellaneous/xor.m
share/octave/${PKGVERSION}/m/miscellaneous/zip.m
share/octave/${PKGVERSION}/m/optimization/PKG_ADD
share/octave/${PKGVERSION}/m/optimization/__all_opts__.m
share/octave/${PKGVERSION}/m/optimization/fminbnd.m
share/octave/${PKGVERSION}/m/optimization/fminunc.m
share/octave/${PKGVERSION}/m/optimization/fsolve.m
share/octave/${PKGVERSION}/m/optimization/fzero.m
share/octave/${PKGVERSION}/m/optimization/glpk.m
share/octave/${PKGVERSION}/m/optimization/lsqnonneg.m
share/octave/${PKGVERSION}/m/optimization/optimget.m
share/octave/${PKGVERSION}/m/optimization/optimset.m
share/octave/${PKGVERSION}/m/optimization/pqpnonneg.m
share/octave/${PKGVERSION}/m/optimization/private/__fdjac__.m
share/octave/${PKGVERSION}/m/optimization/qp.m
share/octave/${PKGVERSION}/m/optimization/sqp.m
share/octave/${PKGVERSION}/m/path/matlabroot.m
share/octave/${PKGVERSION}/m/path/pathdef.m
share/octave/${PKGVERSION}/m/path/savepath.m
share/octave/${PKGVERSION}/m/pkg/pkg.m
share/octave/${PKGVERSION}/m/pkg/private/get_forge_pkg.m
share/octave/${PKGVERSION}/m/plot/__gnuplot_drawnow__.m
share/octave/${PKGVERSION}/m/plot/__plt_get_axis_arg__.m
share/octave/${PKGVERSION}/m/plot/allchild.m
share/octave/${PKGVERSION}/m/plot/ancestor.m
share/octave/${PKGVERSION}/m/plot/area.m
share/octave/${PKGVERSION}/m/plot/axes.m
share/octave/${PKGVERSION}/m/plot/axis.m
share/octave/${PKGVERSION}/m/plot/bar.m
share/octave/${PKGVERSION}/m/plot/barh.m
share/octave/${PKGVERSION}/m/plot/box.m
share/octave/${PKGVERSION}/m/plot/caxis.m
share/octave/${PKGVERSION}/m/plot/cla.m
share/octave/${PKGVERSION}/m/plot/clabel.m
share/octave/${PKGVERSION}/m/plot/clf.m
share/octave/${PKGVERSION}/m/plot/close.m
share/octave/${PKGVERSION}/m/plot/closereq.m
share/octave/${PKGVERSION}/m/plot/colorbar.m
share/octave/${PKGVERSION}/m/plot/colstyle.m
share/octave/${PKGVERSION}/m/plot/comet.m
share/octave/${PKGVERSION}/m/plot/comet3.m
share/octave/${PKGVERSION}/m/plot/compass.m
share/octave/${PKGVERSION}/m/plot/contour.m
share/octave/${PKGVERSION}/m/plot/contour3.m
share/octave/${PKGVERSION}/m/plot/contourc.m
share/octave/${PKGVERSION}/m/plot/contourf.m
share/octave/${PKGVERSION}/m/plot/cylinder.m
share/octave/${PKGVERSION}/m/plot/daspect.m
share/octave/${PKGVERSION}/m/plot/diffuse.m
share/octave/${PKGVERSION}/m/plot/ellipsoid.m
share/octave/${PKGVERSION}/m/plot/errorbar.m
share/octave/${PKGVERSION}/m/plot/ezcontour.m
share/octave/${PKGVERSION}/m/plot/ezcontourf.m
share/octave/${PKGVERSION}/m/plot/ezmesh.m
share/octave/${PKGVERSION}/m/plot/ezmeshc.m
share/octave/${PKGVERSION}/m/plot/ezplot.m
share/octave/${PKGVERSION}/m/plot/ezplot3.m
share/octave/${PKGVERSION}/m/plot/ezpolar.m
share/octave/${PKGVERSION}/m/plot/ezsurf.m
share/octave/${PKGVERSION}/m/plot/ezsurfc.m
share/octave/${PKGVERSION}/m/plot/feather.m
share/octave/${PKGVERSION}/m/plot/figure.m
share/octave/${PKGVERSION}/m/plot/fill.m
share/octave/${PKGVERSION}/m/plot/findall.m
share/octave/${PKGVERSION}/m/plot/findobj.m
share/octave/${PKGVERSION}/m/plot/fplot.m
share/octave/${PKGVERSION}/m/plot/gca.m
share/octave/${PKGVERSION}/m/plot/gcbf.m
share/octave/${PKGVERSION}/m/plot/gcbo.m
share/octave/${PKGVERSION}/m/plot/gcf.m
share/octave/${PKGVERSION}/m/plot/ginput.m
share/octave/${PKGVERSION}/m/plot/gnuplot_binary.m
share/octave/${PKGVERSION}/m/plot/graphics_toolkit.m
share/octave/${PKGVERSION}/m/plot/grid.m
share/octave/${PKGVERSION}/m/plot/gtext.m
share/octave/${PKGVERSION}/m/plot/guidata.m
share/octave/${PKGVERSION}/m/plot/guihandles.m
share/octave/${PKGVERSION}/m/plot/hggroup.m
share/octave/${PKGVERSION}/m/plot/hidden.m
share/octave/${PKGVERSION}/m/plot/hist.m
share/octave/${PKGVERSION}/m/plot/hold.m
share/octave/${PKGVERSION}/m/plot/isfigure.m
share/octave/${PKGVERSION}/m/plot/ishghandle.m
share/octave/${PKGVERSION}/m/plot/ishold.m
share/octave/${PKGVERSION}/m/plot/isocolors.m
share/octave/${PKGVERSION}/m/plot/isonormals.m
share/octave/${PKGVERSION}/m/plot/isosurface.m
share/octave/${PKGVERSION}/m/plot/isprop.m
share/octave/${PKGVERSION}/m/plot/legend.m
share/octave/${PKGVERSION}/m/plot/line.m
share/octave/${PKGVERSION}/m/plot/linkprop.m
share/octave/${PKGVERSION}/m/plot/loglog.m
share/octave/${PKGVERSION}/m/plot/loglogerr.m
share/octave/${PKGVERSION}/m/plot/mesh.m
share/octave/${PKGVERSION}/m/plot/meshc.m
share/octave/${PKGVERSION}/m/plot/meshgrid.m
share/octave/${PKGVERSION}/m/plot/meshz.m
share/octave/${PKGVERSION}/m/plot/ndgrid.m
share/octave/${PKGVERSION}/m/plot/newplot.m
share/octave/${PKGVERSION}/m/plot/orient.m
share/octave/${PKGVERSION}/m/plot/pareto.m
share/octave/${PKGVERSION}/m/plot/patch.m
share/octave/${PKGVERSION}/m/plot/pbaspect.m
share/octave/${PKGVERSION}/m/plot/pcolor.m
share/octave/${PKGVERSION}/m/plot/peaks.m
share/octave/${PKGVERSION}/m/plot/pie.m
share/octave/${PKGVERSION}/m/plot/pie3.m
share/octave/${PKGVERSION}/m/plot/plot.m
share/octave/${PKGVERSION}/m/plot/plot3.m
share/octave/${PKGVERSION}/m/plot/plotmatrix.m
share/octave/${PKGVERSION}/m/plot/plotyy.m
share/octave/${PKGVERSION}/m/plot/polar.m
share/octave/${PKGVERSION}/m/plot/print.m
share/octave/${PKGVERSION}/m/plot/private/__actual_axis_position__.m
share/octave/${PKGVERSION}/m/plot/private/__add_datasource__.m
share/octave/${PKGVERSION}/m/plot/private/__add_default_menu__.m
share/octave/${PKGVERSION}/m/plot/private/__axes_limits__.m
share/octave/${PKGVERSION}/m/plot/private/__axis_label__.m
share/octave/${PKGVERSION}/m/plot/private/__bar__.m
share/octave/${PKGVERSION}/m/plot/private/__clabel__.m
share/octave/${PKGVERSION}/m/plot/private/__color_str_rgb__.m
share/octave/${PKGVERSION}/m/plot/private/__contour__.m
share/octave/${PKGVERSION}/m/plot/private/__default_plot_options__.m
share/octave/${PKGVERSION}/m/plot/private/__errcomm__.m
share/octave/${PKGVERSION}/m/plot/private/__errplot__.m
share/octave/${PKGVERSION}/m/plot/private/__ezplot__.m
share/octave/${PKGVERSION}/m/plot/private/__file_filter__.m
share/octave/${PKGVERSION}/m/plot/private/__fltk_file_filter__.m
share/octave/${PKGVERSION}/m/plot/private/__fltk_ginput__.m
share/octave/${PKGVERSION}/m/plot/private/__fltk_print__.m
share/octave/${PKGVERSION}/m/plot/private/__getlegenddata__.m
share/octave/${PKGVERSION}/m/plot/private/__ghostscript__.m
share/octave/${PKGVERSION}/m/plot/private/__gnuplot_get_var__.m
share/octave/${PKGVERSION}/m/plot/private/__gnuplot_ginput__.m
share/octave/${PKGVERSION}/m/plot/private/__gnuplot_has_feature__.m
share/octave/${PKGVERSION}/m/plot/private/__gnuplot_has_terminal__.m
share/octave/${PKGVERSION}/m/plot/private/__gnuplot_open_stream__.m
share/octave/${PKGVERSION}/m/plot/private/__gnuplot_print__.m
share/octave/${PKGVERSION}/m/plot/private/__gnuplot_version__.m
share/octave/${PKGVERSION}/m/plot/private/__go_draw_axes__.m
share/octave/${PKGVERSION}/m/plot/private/__go_draw_figure__.m
share/octave/${PKGVERSION}/m/plot/private/__interp_cube__.m
share/octave/${PKGVERSION}/m/plot/private/__is_function__.m
share/octave/${PKGVERSION}/m/plot/private/__line__.m
share/octave/${PKGVERSION}/m/plot/private/__marching_cube__.m
share/octave/${PKGVERSION}/m/plot/private/__next_line_color__.m
share/octave/${PKGVERSION}/m/plot/private/__next_line_style__.m
share/octave/${PKGVERSION}/m/plot/private/__patch__.m
share/octave/${PKGVERSION}/m/plot/private/__pie__.m
share/octave/${PKGVERSION}/m/plot/private/__plt__.m
share/octave/${PKGVERSION}/m/plot/private/__pltopt__.m
share/octave/${PKGVERSION}/m/plot/private/__print_parse_opts__.m
share/octave/${PKGVERSION}/m/plot/private/__quiver__.m
share/octave/${PKGVERSION}/m/plot/private/__scatter__.m
share/octave/${PKGVERSION}/m/plot/private/__stem__.m
share/octave/${PKGVERSION}/m/plot/private/__tight_eps_bbox__.m
share/octave/${PKGVERSION}/m/plot/private/__uigetdir_fltk__.m
share/octave/${PKGVERSION}/m/plot/private/__uigetfile_fltk__.m
share/octave/${PKGVERSION}/m/plot/private/__uiobject_split_args__.m
share/octave/${PKGVERSION}/m/plot/private/__uiputfile_fltk__.m
share/octave/${PKGVERSION}/m/plot/quiver.m
share/octave/${PKGVERSION}/m/plot/quiver3.m
share/octave/${PKGVERSION}/m/plot/rectangle.m
share/octave/${PKGVERSION}/m/plot/refresh.m
share/octave/${PKGVERSION}/m/plot/refreshdata.m
share/octave/${PKGVERSION}/m/plot/ribbon.m
share/octave/${PKGVERSION}/m/plot/rose.m
share/octave/${PKGVERSION}/m/plot/saveas.m
share/octave/${PKGVERSION}/m/plot/scatter.m
share/octave/${PKGVERSION}/m/plot/scatter3.m
share/octave/${PKGVERSION}/m/plot/semilogx.m
share/octave/${PKGVERSION}/m/plot/semilogxerr.m
share/octave/${PKGVERSION}/m/plot/semilogy.m
share/octave/${PKGVERSION}/m/plot/semilogyerr.m
share/octave/${PKGVERSION}/m/plot/shading.m
share/octave/${PKGVERSION}/m/plot/shg.m
share/octave/${PKGVERSION}/m/plot/slice.m
share/octave/${PKGVERSION}/m/plot/sombrero.m
share/octave/${PKGVERSION}/m/plot/specular.m
share/octave/${PKGVERSION}/m/plot/sphere.m
share/octave/${PKGVERSION}/m/plot/spinmap.m
share/octave/${PKGVERSION}/m/plot/stairs.m
share/octave/${PKGVERSION}/m/plot/stem.m
share/octave/${PKGVERSION}/m/plot/stem3.m
share/octave/${PKGVERSION}/m/plot/subplot.m
share/octave/${PKGVERSION}/m/plot/surf.m
share/octave/${PKGVERSION}/m/plot/surface.m
share/octave/${PKGVERSION}/m/plot/surfc.m
share/octave/${PKGVERSION}/m/plot/surfl.m
share/octave/${PKGVERSION}/m/plot/surfnorm.m
share/octave/${PKGVERSION}/m/plot/text.m
share/octave/${PKGVERSION}/m/plot/title.m
share/octave/${PKGVERSION}/m/plot/trimesh.m
share/octave/${PKGVERSION}/m/plot/triplot.m
share/octave/${PKGVERSION}/m/plot/trisurf.m
share/octave/${PKGVERSION}/m/plot/uicontextmenu.m
share/octave/${PKGVERSION}/m/plot/uicontrol.m
share/octave/${PKGVERSION}/m/plot/uigetdir.m
share/octave/${PKGVERSION}/m/plot/uigetfile.m
share/octave/${PKGVERSION}/m/plot/uimenu.m
share/octave/${PKGVERSION}/m/plot/uipanel.m
share/octave/${PKGVERSION}/m/plot/uipushtool.m
share/octave/${PKGVERSION}/m/plot/uiputfile.m
share/octave/${PKGVERSION}/m/plot/uiresume.m
share/octave/${PKGVERSION}/m/plot/uitoggletool.m
share/octave/${PKGVERSION}/m/plot/uitoolbar.m
share/octave/${PKGVERSION}/m/plot/uiwait.m
share/octave/${PKGVERSION}/m/plot/view.m
share/octave/${PKGVERSION}/m/plot/waitbar.m
share/octave/${PKGVERSION}/m/plot/waitforbuttonpress.m
share/octave/${PKGVERSION}/m/plot/whitebg.m
share/octave/${PKGVERSION}/m/plot/xlabel.m
share/octave/${PKGVERSION}/m/plot/xlim.m
share/octave/${PKGVERSION}/m/plot/ylabel.m
share/octave/${PKGVERSION}/m/plot/ylim.m
share/octave/${PKGVERSION}/m/plot/zlabel.m
share/octave/${PKGVERSION}/m/plot/zlim.m
share/octave/${PKGVERSION}/m/polynomial/compan.m
share/octave/${PKGVERSION}/m/polynomial/conv.m
share/octave/${PKGVERSION}/m/polynomial/deconv.m
share/octave/${PKGVERSION}/m/polynomial/mkpp.m
share/octave/${PKGVERSION}/m/polynomial/mpoles.m
share/octave/${PKGVERSION}/m/polynomial/pchip.m
share/octave/${PKGVERSION}/m/polynomial/poly.m
share/octave/${PKGVERSION}/m/polynomial/polyaffine.m
share/octave/${PKGVERSION}/m/polynomial/polyder.m
share/octave/${PKGVERSION}/m/polynomial/polyfit.m
share/octave/${PKGVERSION}/m/polynomial/polygcd.m
share/octave/${PKGVERSION}/m/polynomial/polyint.m
share/octave/${PKGVERSION}/m/polynomial/polyout.m
share/octave/${PKGVERSION}/m/polynomial/polyreduce.m
share/octave/${PKGVERSION}/m/polynomial/polyval.m
share/octave/${PKGVERSION}/m/polynomial/polyvalm.m
share/octave/${PKGVERSION}/m/polynomial/ppder.m
share/octave/${PKGVERSION}/m/polynomial/ppint.m
share/octave/${PKGVERSION}/m/polynomial/ppjumps.m
share/octave/${PKGVERSION}/m/polynomial/ppval.m
share/octave/${PKGVERSION}/m/polynomial/residue.m
share/octave/${PKGVERSION}/m/polynomial/roots.m
share/octave/${PKGVERSION}/m/polynomial/spline.m
share/octave/${PKGVERSION}/m/polynomial/unmkpp.m
share/octave/${PKGVERSION}/m/prefs/addpref.m
share/octave/${PKGVERSION}/m/prefs/getpref.m
share/octave/${PKGVERSION}/m/prefs/ispref.m
share/octave/${PKGVERSION}/m/prefs/private/loadprefs.m
share/octave/${PKGVERSION}/m/prefs/private/prefsfile.m
share/octave/${PKGVERSION}/m/prefs/private/saveprefs.m
share/octave/${PKGVERSION}/m/prefs/rmpref.m
share/octave/${PKGVERSION}/m/prefs/setpref.m
share/octave/${PKGVERSION}/m/set/intersect.m
share/octave/${PKGVERSION}/m/set/ismember.m
share/octave/${PKGVERSION}/m/set/powerset.m
share/octave/${PKGVERSION}/m/set/private/validargs.m
share/octave/${PKGVERSION}/m/set/setdiff.m
share/octave/${PKGVERSION}/m/set/setxor.m
share/octave/${PKGVERSION}/m/set/union.m
share/octave/${PKGVERSION}/m/set/unique.m
share/octave/${PKGVERSION}/m/signal/arch_fit.m
share/octave/${PKGVERSION}/m/signal/arch_rnd.m
share/octave/${PKGVERSION}/m/signal/arch_test.m
share/octave/${PKGVERSION}/m/signal/arma_rnd.m
share/octave/${PKGVERSION}/m/signal/autoreg_matrix.m
share/octave/${PKGVERSION}/m/signal/bartlett.m
share/octave/${PKGVERSION}/m/signal/blackman.m
share/octave/${PKGVERSION}/m/signal/detrend.m
share/octave/${PKGVERSION}/m/signal/diffpara.m
share/octave/${PKGVERSION}/m/signal/durbinlevinson.m
share/octave/${PKGVERSION}/m/signal/fftconv.m
share/octave/${PKGVERSION}/m/signal/fftfilt.m
share/octave/${PKGVERSION}/m/signal/fftshift.m
share/octave/${PKGVERSION}/m/signal/filter2.m
share/octave/${PKGVERSION}/m/signal/fractdiff.m
share/octave/${PKGVERSION}/m/signal/freqz.m
share/octave/${PKGVERSION}/m/signal/freqz_plot.m
share/octave/${PKGVERSION}/m/signal/hamming.m
share/octave/${PKGVERSION}/m/signal/hanning.m
share/octave/${PKGVERSION}/m/signal/hurst.m
share/octave/${PKGVERSION}/m/signal/ifftshift.m
share/octave/${PKGVERSION}/m/signal/periodogram.m
share/octave/${PKGVERSION}/m/signal/private/rectangle_lw.m
share/octave/${PKGVERSION}/m/signal/private/rectangle_sw.m
share/octave/${PKGVERSION}/m/signal/private/triangle_lw.m
share/octave/${PKGVERSION}/m/signal/private/triangle_sw.m
share/octave/${PKGVERSION}/m/signal/sinc.m
share/octave/${PKGVERSION}/m/signal/sinetone.m
share/octave/${PKGVERSION}/m/signal/sinewave.m
share/octave/${PKGVERSION}/m/signal/spectral_adf.m
share/octave/${PKGVERSION}/m/signal/spectral_xdf.m
share/octave/${PKGVERSION}/m/signal/spencer.m
share/octave/${PKGVERSION}/m/signal/stft.m
share/octave/${PKGVERSION}/m/signal/synthesis.m
share/octave/${PKGVERSION}/m/signal/unwrap.m
share/octave/${PKGVERSION}/m/signal/yulewalker.m
share/octave/${PKGVERSION}/m/sparse/bicg.m
share/octave/${PKGVERSION}/m/sparse/bicgstab.m
share/octave/${PKGVERSION}/m/sparse/cgs.m
share/octave/${PKGVERSION}/m/sparse/colperm.m
share/octave/${PKGVERSION}/m/sparse/etreeplot.m
share/octave/${PKGVERSION}/m/sparse/gmres.m
share/octave/${PKGVERSION}/m/sparse/gplot.m
share/octave/${PKGVERSION}/m/sparse/nonzeros.m
share/octave/${PKGVERSION}/m/sparse/pcg.m
share/octave/${PKGVERSION}/m/sparse/pcr.m
share/octave/${PKGVERSION}/m/sparse/private/__sprand_impl__.m
share/octave/${PKGVERSION}/m/sparse/spaugment.m
share/octave/${PKGVERSION}/m/sparse/spconvert.m
share/octave/${PKGVERSION}/m/sparse/spdiags.m
share/octave/${PKGVERSION}/m/sparse/speye.m
share/octave/${PKGVERSION}/m/sparse/spfun.m
share/octave/${PKGVERSION}/m/sparse/spones.m
share/octave/${PKGVERSION}/m/sparse/sprand.m
share/octave/${PKGVERSION}/m/sparse/sprandn.m
share/octave/${PKGVERSION}/m/sparse/sprandsym.m
share/octave/${PKGVERSION}/m/sparse/spstats.m
share/octave/${PKGVERSION}/m/sparse/spy.m
share/octave/${PKGVERSION}/m/sparse/svds.m
share/octave/${PKGVERSION}/m/sparse/treelayout.m
share/octave/${PKGVERSION}/m/sparse/treeplot.m
share/octave/${PKGVERSION}/m/specfun/bessel.m
share/octave/${PKGVERSION}/m/specfun/beta.m
share/octave/${PKGVERSION}/m/specfun/betaln.m
share/octave/${PKGVERSION}/m/specfun/factor.m
share/octave/${PKGVERSION}/m/specfun/factorial.m
share/octave/${PKGVERSION}/m/specfun/isprime.m
share/octave/${PKGVERSION}/m/specfun/lcm.m
share/octave/${PKGVERSION}/m/specfun/legendre.m
share/octave/${PKGVERSION}/m/specfun/nchoosek.m
share/octave/${PKGVERSION}/m/specfun/nthroot.m
share/octave/${PKGVERSION}/m/specfun/perms.m
share/octave/${PKGVERSION}/m/specfun/pow2.m
share/octave/${PKGVERSION}/m/specfun/primes.m
share/octave/${PKGVERSION}/m/specfun/reallog.m
share/octave/${PKGVERSION}/m/specfun/realpow.m
share/octave/${PKGVERSION}/m/specfun/realsqrt.m
share/octave/${PKGVERSION}/m/special-matrix/hadamard.m
share/octave/${PKGVERSION}/m/special-matrix/hankel.m
share/octave/${PKGVERSION}/m/special-matrix/hilb.m
share/octave/${PKGVERSION}/m/special-matrix/invhilb.m
share/octave/${PKGVERSION}/m/special-matrix/magic.m
share/octave/${PKGVERSION}/m/special-matrix/pascal.m
share/octave/${PKGVERSION}/m/special-matrix/rosser.m
share/octave/${PKGVERSION}/m/special-matrix/toeplitz.m
share/octave/${PKGVERSION}/m/special-matrix/vander.m
share/octave/${PKGVERSION}/m/special-matrix/wilkinson.m
share/octave/${PKGVERSION}/m/startup/__finish__.m
share/octave/${PKGVERSION}/m/startup/inputrc
share/octave/${PKGVERSION}/m/startup/octaverc
share/octave/${PKGVERSION}/m/statistics/base/center.m
share/octave/${PKGVERSION}/m/statistics/base/cloglog.m
share/octave/${PKGVERSION}/m/statistics/base/corr.m
share/octave/${PKGVERSION}/m/statistics/base/cov.m
share/octave/${PKGVERSION}/m/statistics/base/gls.m
share/octave/${PKGVERSION}/m/statistics/base/histc.m
share/octave/${PKGVERSION}/m/statistics/base/iqr.m
share/octave/${PKGVERSION}/m/statistics/base/kendall.m
share/octave/${PKGVERSION}/m/statistics/base/kurtosis.m
share/octave/${PKGVERSION}/m/statistics/base/logit.m
share/octave/${PKGVERSION}/m/statistics/base/mahalanobis.m
share/octave/${PKGVERSION}/m/statistics/base/mean.m
share/octave/${PKGVERSION}/m/statistics/base/meansq.m
share/octave/${PKGVERSION}/m/statistics/base/median.m
share/octave/${PKGVERSION}/m/statistics/base/mode.m
share/octave/${PKGVERSION}/m/statistics/base/moment.m
share/octave/${PKGVERSION}/m/statistics/base/ols.m
share/octave/${PKGVERSION}/m/statistics/base/ppplot.m
share/octave/${PKGVERSION}/m/statistics/base/prctile.m
share/octave/${PKGVERSION}/m/statistics/base/probit.m
share/octave/${PKGVERSION}/m/statistics/base/qqplot.m
share/octave/${PKGVERSION}/m/statistics/base/quantile.m
share/octave/${PKGVERSION}/m/statistics/base/range.m
share/octave/${PKGVERSION}/m/statistics/base/ranks.m
share/octave/${PKGVERSION}/m/statistics/base/run_count.m
share/octave/${PKGVERSION}/m/statistics/base/runlength.m
share/octave/${PKGVERSION}/m/statistics/base/skewness.m
share/octave/${PKGVERSION}/m/statistics/base/spearman.m
share/octave/${PKGVERSION}/m/statistics/base/statistics.m
share/octave/${PKGVERSION}/m/statistics/base/std.m
share/octave/${PKGVERSION}/m/statistics/base/table.m
share/octave/${PKGVERSION}/m/statistics/base/var.m
share/octave/${PKGVERSION}/m/statistics/base/zscore.m
share/octave/${PKGVERSION}/m/statistics/distributions/betacdf.m
share/octave/${PKGVERSION}/m/statistics/distributions/betainv.m
share/octave/${PKGVERSION}/m/statistics/distributions/betapdf.m
share/octave/${PKGVERSION}/m/statistics/distributions/betarnd.m
share/octave/${PKGVERSION}/m/statistics/distributions/binocdf.m
share/octave/${PKGVERSION}/m/statistics/distributions/binoinv.m
share/octave/${PKGVERSION}/m/statistics/distributions/binopdf.m
share/octave/${PKGVERSION}/m/statistics/distributions/binornd.m
share/octave/${PKGVERSION}/m/statistics/distributions/cauchy_cdf.m
share/octave/${PKGVERSION}/m/statistics/distributions/cauchy_inv.m
share/octave/${PKGVERSION}/m/statistics/distributions/cauchy_pdf.m
share/octave/${PKGVERSION}/m/statistics/distributions/cauchy_rnd.m
share/octave/${PKGVERSION}/m/statistics/distributions/chi2cdf.m
share/octave/${PKGVERSION}/m/statistics/distributions/chi2inv.m
share/octave/${PKGVERSION}/m/statistics/distributions/chi2pdf.m
share/octave/${PKGVERSION}/m/statistics/distributions/chi2rnd.m
share/octave/${PKGVERSION}/m/statistics/distributions/discrete_cdf.m
share/octave/${PKGVERSION}/m/statistics/distributions/discrete_inv.m
share/octave/${PKGVERSION}/m/statistics/distributions/discrete_pdf.m
share/octave/${PKGVERSION}/m/statistics/distributions/discrete_rnd.m
share/octave/${PKGVERSION}/m/statistics/distributions/empirical_cdf.m
share/octave/${PKGVERSION}/m/statistics/distributions/empirical_inv.m
share/octave/${PKGVERSION}/m/statistics/distributions/empirical_pdf.m
share/octave/${PKGVERSION}/m/statistics/distributions/empirical_rnd.m
share/octave/${PKGVERSION}/m/statistics/distributions/expcdf.m
share/octave/${PKGVERSION}/m/statistics/distributions/expinv.m
share/octave/${PKGVERSION}/m/statistics/distributions/exppdf.m
share/octave/${PKGVERSION}/m/statistics/distributions/exprnd.m
share/octave/${PKGVERSION}/m/statistics/distributions/fcdf.m
share/octave/${PKGVERSION}/m/statistics/distributions/finv.m
share/octave/${PKGVERSION}/m/statistics/distributions/fpdf.m
share/octave/${PKGVERSION}/m/statistics/distributions/frnd.m
share/octave/${PKGVERSION}/m/statistics/distributions/gamcdf.m
share/octave/${PKGVERSION}/m/statistics/distributions/gaminv.m
share/octave/${PKGVERSION}/m/statistics/distributions/gampdf.m
share/octave/${PKGVERSION}/m/statistics/distributions/gamrnd.m
share/octave/${PKGVERSION}/m/statistics/distributions/geocdf.m
share/octave/${PKGVERSION}/m/statistics/distributions/geoinv.m
share/octave/${PKGVERSION}/m/statistics/distributions/geopdf.m
share/octave/${PKGVERSION}/m/statistics/distributions/geornd.m
share/octave/${PKGVERSION}/m/statistics/distributions/hygecdf.m
share/octave/${PKGVERSION}/m/statistics/distributions/hygeinv.m
share/octave/${PKGVERSION}/m/statistics/distributions/hygepdf.m
share/octave/${PKGVERSION}/m/statistics/distributions/hygernd.m
share/octave/${PKGVERSION}/m/statistics/distributions/kolmogorov_smirnov_cdf.m
share/octave/${PKGVERSION}/m/statistics/distributions/laplace_cdf.m
share/octave/${PKGVERSION}/m/statistics/distributions/laplace_inv.m
share/octave/${PKGVERSION}/m/statistics/distributions/laplace_pdf.m
share/octave/${PKGVERSION}/m/statistics/distributions/laplace_rnd.m
share/octave/${PKGVERSION}/m/statistics/distributions/logistic_cdf.m
share/octave/${PKGVERSION}/m/statistics/distributions/logistic_inv.m
share/octave/${PKGVERSION}/m/statistics/distributions/logistic_pdf.m
share/octave/${PKGVERSION}/m/statistics/distributions/logistic_rnd.m
share/octave/${PKGVERSION}/m/statistics/distributions/logncdf.m
share/octave/${PKGVERSION}/m/statistics/distributions/logninv.m
share/octave/${PKGVERSION}/m/statistics/distributions/lognpdf.m
share/octave/${PKGVERSION}/m/statistics/distributions/lognrnd.m
share/octave/${PKGVERSION}/m/statistics/distributions/nbincdf.m
share/octave/${PKGVERSION}/m/statistics/distributions/nbininv.m
share/octave/${PKGVERSION}/m/statistics/distributions/nbinpdf.m
share/octave/${PKGVERSION}/m/statistics/distributions/nbinrnd.m
share/octave/${PKGVERSION}/m/statistics/distributions/normcdf.m
share/octave/${PKGVERSION}/m/statistics/distributions/norminv.m
share/octave/${PKGVERSION}/m/statistics/distributions/normpdf.m
share/octave/${PKGVERSION}/m/statistics/distributions/normrnd.m
share/octave/${PKGVERSION}/m/statistics/distributions/poisscdf.m
share/octave/${PKGVERSION}/m/statistics/distributions/poissinv.m
share/octave/${PKGVERSION}/m/statistics/distributions/poisspdf.m
share/octave/${PKGVERSION}/m/statistics/distributions/poissrnd.m
share/octave/${PKGVERSION}/m/statistics/distributions/stdnormal_cdf.m
share/octave/${PKGVERSION}/m/statistics/distributions/stdnormal_inv.m
share/octave/${PKGVERSION}/m/statistics/distributions/stdnormal_pdf.m
share/octave/${PKGVERSION}/m/statistics/distributions/stdnormal_rnd.m
share/octave/${PKGVERSION}/m/statistics/distributions/tcdf.m
share/octave/${PKGVERSION}/m/statistics/distributions/tinv.m
share/octave/${PKGVERSION}/m/statistics/distributions/tpdf.m
share/octave/${PKGVERSION}/m/statistics/distributions/trnd.m
share/octave/${PKGVERSION}/m/statistics/distributions/unidcdf.m
share/octave/${PKGVERSION}/m/statistics/distributions/unidinv.m
share/octave/${PKGVERSION}/m/statistics/distributions/unidpdf.m
share/octave/${PKGVERSION}/m/statistics/distributions/unidrnd.m
share/octave/${PKGVERSION}/m/statistics/distributions/unifcdf.m
share/octave/${PKGVERSION}/m/statistics/distributions/unifinv.m
share/octave/${PKGVERSION}/m/statistics/distributions/unifpdf.m
share/octave/${PKGVERSION}/m/statistics/distributions/unifrnd.m
share/octave/${PKGVERSION}/m/statistics/distributions/wblcdf.m
share/octave/${PKGVERSION}/m/statistics/distributions/wblinv.m
share/octave/${PKGVERSION}/m/statistics/distributions/wblpdf.m
share/octave/${PKGVERSION}/m/statistics/distributions/wblrnd.m
share/octave/${PKGVERSION}/m/statistics/distributions/wienrnd.m
share/octave/${PKGVERSION}/m/statistics/models/logistic_regression.m
share/octave/${PKGVERSION}/m/statistics/models/private/logistic_regression_derivatives.m
share/octave/${PKGVERSION}/m/statistics/models/private/logistic_regression_likelihood.m
share/octave/${PKGVERSION}/m/statistics/tests/anova.m
share/octave/${PKGVERSION}/m/statistics/tests/bartlett_test.m
share/octave/${PKGVERSION}/m/statistics/tests/chisquare_test_homogeneity.m
share/octave/${PKGVERSION}/m/statistics/tests/chisquare_test_independence.m
share/octave/${PKGVERSION}/m/statistics/tests/cor_test.m
share/octave/${PKGVERSION}/m/statistics/tests/f_test_regression.m
share/octave/${PKGVERSION}/m/statistics/tests/hotelling_test.m
share/octave/${PKGVERSION}/m/statistics/tests/hotelling_test_2.m
share/octave/${PKGVERSION}/m/statistics/tests/kolmogorov_smirnov_test.m
share/octave/${PKGVERSION}/m/statistics/tests/kolmogorov_smirnov_test_2.m
share/octave/${PKGVERSION}/m/statistics/tests/kruskal_wallis_test.m
share/octave/${PKGVERSION}/m/statistics/tests/manova.m
share/octave/${PKGVERSION}/m/statistics/tests/mcnemar_test.m
share/octave/${PKGVERSION}/m/statistics/tests/prop_test_2.m
share/octave/${PKGVERSION}/m/statistics/tests/run_test.m
share/octave/${PKGVERSION}/m/statistics/tests/sign_test.m
share/octave/${PKGVERSION}/m/statistics/tests/t_test.m
share/octave/${PKGVERSION}/m/statistics/tests/t_test_2.m
share/octave/${PKGVERSION}/m/statistics/tests/t_test_regression.m
share/octave/${PKGVERSION}/m/statistics/tests/u_test.m
share/octave/${PKGVERSION}/m/statistics/tests/var_test.m
share/octave/${PKGVERSION}/m/statistics/tests/welch_test.m
share/octave/${PKGVERSION}/m/statistics/tests/wilcoxon_test.m
share/octave/${PKGVERSION}/m/statistics/tests/z_test.m
share/octave/${PKGVERSION}/m/statistics/tests/z_test_2.m
share/octave/${PKGVERSION}/m/strings/base2dec.m
share/octave/${PKGVERSION}/m/strings/bin2dec.m
share/octave/${PKGVERSION}/m/strings/blanks.m
share/octave/${PKGVERSION}/m/strings/cstrcat.m
share/octave/${PKGVERSION}/m/strings/deblank.m
share/octave/${PKGVERSION}/m/strings/dec2base.m
share/octave/${PKGVERSION}/m/strings/dec2bin.m
share/octave/${PKGVERSION}/m/strings/dec2hex.m
share/octave/${PKGVERSION}/m/strings/findstr.m
share/octave/${PKGVERSION}/m/strings/hex2dec.m
share/octave/${PKGVERSION}/m/strings/index.m
share/octave/${PKGVERSION}/m/strings/isletter.m
share/octave/${PKGVERSION}/m/strings/isstrprop.m
share/octave/${PKGVERSION}/m/strings/mat2str.m
share/octave/${PKGVERSION}/m/strings/regexptranslate.m
share/octave/${PKGVERSION}/m/strings/rindex.m
share/octave/${PKGVERSION}/m/strings/str2num.m
share/octave/${PKGVERSION}/m/strings/strcat.m
share/octave/${PKGVERSION}/m/strings/strchr.m
share/octave/${PKGVERSION}/m/strings/strjust.m
share/octave/${PKGVERSION}/m/strings/strmatch.m
share/octave/${PKGVERSION}/m/strings/strsplit.m
share/octave/${PKGVERSION}/m/strings/strtok.m
share/octave/${PKGVERSION}/m/strings/strtrim.m
share/octave/${PKGVERSION}/m/strings/strtrunc.m
share/octave/${PKGVERSION}/m/strings/substr.m
share/octave/${PKGVERSION}/m/strings/untabify.m
share/octave/${PKGVERSION}/m/strings/validatestring.m
share/octave/${PKGVERSION}/m/testfun/assert.m
share/octave/${PKGVERSION}/m/testfun/demo.m
share/octave/${PKGVERSION}/m/testfun/example.m
share/octave/${PKGVERSION}/m/testfun/fail.m
share/octave/${PKGVERSION}/m/testfun/rundemos.m
share/octave/${PKGVERSION}/m/testfun/runtests.m
share/octave/${PKGVERSION}/m/testfun/speed.m
share/octave/${PKGVERSION}/m/testfun/test.m
share/octave/${PKGVERSION}/m/time/addtodate.m
share/octave/${PKGVERSION}/m/time/asctime.m
share/octave/${PKGVERSION}/m/time/calendar.m
share/octave/${PKGVERSION}/m/time/clock.m
share/octave/${PKGVERSION}/m/time/ctime.m
share/octave/${PKGVERSION}/m/time/date.m
share/octave/${PKGVERSION}/m/time/datenum.m
share/octave/${PKGVERSION}/m/time/datestr.m
share/octave/${PKGVERSION}/m/time/datetick.m
share/octave/${PKGVERSION}/m/time/datevec.m
share/octave/${PKGVERSION}/m/time/eomday.m
share/octave/${PKGVERSION}/m/time/etime.m
share/octave/${PKGVERSION}/m/time/is_leap_year.m
share/octave/${PKGVERSION}/m/time/now.m
share/octave/${PKGVERSION}/m/time/weekday.m
share/octave/site/m/startup/octaverc
@pkgdir share/octave/site/api-v48+/m
@pkgdir share/octave/${PKGVERSION}/site/m
@pkgdir share/octave/${PKGVERSION}/doc
@pkgdir libexec/octave/site/exec/${MACHINE_GNU_PLATFORM}
@pkgdir libexec/octave/api-v48+/site/exec/${MACHINE_GNU_PLATFORM}
@pkgdir libexec/octave/${PKGVERSION}/site/exec/${MACHINE_GNU_PLATFORM}
@pkgdir lib/octave/site/oct/${MACHINE_GNU_PLATFORM}
@pkgdir lib/octave/site/oct/api-v48+/${MACHINE_GNU_PLATFORM}
@pkgdir lib/octave/${PKGVERSION}/site/oct/${MACHINE_GNU_PLATFORM}