diff options
author | thierry <thierry@FreeBSD.org> | 2007-02-12 01:07:13 +0800 |
---|---|---|
committer | thierry <thierry@FreeBSD.org> | 2007-02-12 01:07:13 +0800 |
commit | d72eed03e044de483fca9c955fdbee57d54dd7c1 (patch) | |
tree | 17266dd720b80285ad29eb3aebc5cc91e6849a03 /math | |
parent | dd19253eaee9dfaf1ff1266a7d5a02e2fc9b4f25 (diff) | |
download | freebsd-ports-gnome-d72eed03e044de483fca9c955fdbee57d54dd7c1.tar.gz freebsd-ports-gnome-d72eed03e044de483fca9c955fdbee57d54dd7c1.tar.zst freebsd-ports-gnome-d72eed03e044de483fca9c955fdbee57d54dd7c1.zip |
Upgrade to 3.0.
Partial changelog at
<https://sourceforge.net/project/shownotes.php?group_id=91526&release_id=478524>
Diffstat (limited to 'math')
-rw-r--r-- | math/freemat/Makefile | 129 | ||||
-rw-r--r-- | math/freemat/distinfo | 6 | ||||
-rw-r--r-- | math/freemat/files/patch-configure | 482 | ||||
-rw-r--r-- | math/freemat/files/patch-help::html::Makefile.in | 15 | ||||
-rw-r--r-- | math/freemat/files/patch-libs::Makefile.in | 13 | ||||
-rw-r--r-- | math/freemat/files/patch-libs_libGraphics_HandleAxis.cpp | 13 | ||||
-rw-r--r-- | math/freemat/files/patch-libs_libffi_configure | 19 | ||||
-rw-r--r-- | math/freemat/files/patch-src::mac::Makefile.in | 11 | ||||
-rw-r--r-- | math/freemat/files/patch-src::x11::Makefile.in | 11 | ||||
-rw-r--r-- | math/freemat/files/pkg-message.in | 5 | ||||
-rw-r--r-- | math/freemat/pkg-plist | 2220 |
11 files changed, 1994 insertions, 930 deletions
diff --git a/math/freemat/Makefile b/math/freemat/Makefile index 0da11ac5d34b..c23a927cc528 100644 --- a/math/freemat/Makefile +++ b/math/freemat/Makefile @@ -5,109 +5,98 @@ # $FreeBSD$ # -PORTNAME= freemat -PORTVERSION= 1.10 # Note: FreeMat 2.0 is waiting for QT4. -PORTREVISION= 3 +PORTNAME= FreeMat +PORTVERSION= 3.0 CATEGORIES= math science MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} -MASTER_SITE_SUBDIR= ${PORTNAME} +MASTER_SITE_SUBDIR= ${PORTNAME:L} .ifdef WITH_MPI PKGNAMESUFFIX= -mpi .endif -DISTNAME= FreeMat-${PORTVERSION}-1 MAINTAINER= ports@FreeBSD.org COMMENT= An environment for rapid engineering and scientific processing -LIB_DEPENDS= f2c.2:${PORTSDIR}/lang/f2c \ - gsl.9:${PORTSDIR}/math/gsl \ - jpeg.9:${PORTSDIR}/graphics/jpeg \ - lapack.4:${PORTSDIR}/math/lapack \ - png.5:${PORTSDIR}/graphics/png \ - tiff.4:${PORTSDIR}/graphics/tiff \ - arpack.1:${PORTSDIR}/math/arpack -BUILD_DEPENDS= ${LOCALBASE}/lib/libumfpack.a:${PORTSDIR}/math/umfpack +LIB_DEPENDS= lapack.4:${PORTSDIR}/math/lapack +BUILD_DEPENDS= pkg-config:${PORTSDIR}/devel/pkg-config -.include <bsd.port.pre.mk> - -WANT_FORTRAN= yes #dummy but future use -BUILD_DEPENDS+= gfortran42:${PORTSDIR}/lang/gcc42 -FC= gfortran42 -F77= gfortran42 -FFLAGS+= -O2 - -.if exists(${LOCALBASE}/lib/libatlas_r.so) && !defined(WITH_BLAS) -WITH_ATLAS= yes -.endif -.if defined(WITH_ATLAS) -LIB_DEPENDS+= atlas.2:${PORTSDIR}/math/atlas -BLAS= -lf77blas -latlas -.else -LIB_DEPENDS+= blas.2:${PORTSDIR}/math/blas -BLAS= -lblas +.ifdef WITH_MPI +IGNORE= no MPI support at the moment .endif +WANT_FORTRAN= yes #dummy but future use +BUILD_DEPENDS+= gfortran42:${PORTSDIR}/lang/gcc42 +FC= gfortran42 +F77= gfortran42 +FFLAGS+= -O2 + USE_GL= yes +USE_QT_VER= 4 +USE_GMAKE= yes +QT_COMPONENTS= gui network opengl moc rcc uic GNU_CONFIGURE= yes CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} CONFIGURE_ARGS= --with-blas="${BLAS}" -CONFIGURE_ENV= CPPFLAGS="${CXXFLAGS} -I${LOCALBASE}/include ${THRDFLG}" \ - LDFLAGS="${LDFLAGS} -L${LOCALBASE}/lib ${THRDLIB}" \ +CPPFLAGS= ${CXXFLAGS} -I${LOCALBASE}/include -I${X11BASE}/include ${AMDINC} +CONFIGURE_ENV= LDFLAGS="${LDFLAGS} -L${LOCALBASE}/lib" \ FC="${FC}" F77="${F77}" FFLAGS="${FFLAGS}" SLAVEDIRS= math/freemat-mpi -.if !defined(WITHOUT_XFT) -CONFIGURE_ARGS+= --enable-xft # Set by default since FLTK depends on it. + +DATADIR+= ${PREFIX}/share/${PORTNAME}-${PORTVERSION} + +.if !defined(WITHOUT_FFTW) +LIB_DEPENDS+= fftw3.4:${PORTSDIR}/math/fftw3 \ + fftw3f.4:${PORTSDIR}/math/fftw3-float .endif -.if defined(WITHOUT_THREADS) -LIB_DEPENDS+= fltk.1:${PORTSDIR}/x11-toolkits/fltk -THRDFLG= -THRDLIB= -.else -LIB_DEPENDS+= fltk.1:${PORTSDIR}/x11-toolkits/fltk-threads -CONFIGURE_ARGS+= --enable-threads -THRDFLG= ${PTHREAD_CFLAGS} -THRDLIB= ${PTHREAD_LIBS} +.if !defined(WITHOUT_ARPACK) +LIB_DEPENDS+= arpack.1:${PORTSDIR}/math/arpack +.endif + +.if !defined(WITHOUT_AVCALL) +BUILD_DEPENDS+= ${LOCALBASE}/lib/libavcall.a:${PORTSDIR}/devel/ffcall .endif -WRKSRC= ${WRKDIR}/FreeMat-${PORTVERSION} -SUB_FILES= pkg-message -DATADIR= ${PREFIX}/share/FreeMat +.include <bsd.port.pre.mk> -.if ${OSVERSION} < 500000 -BROKEN= Does not compile with gcc-2.95 +.if exists(${LOCALBASE}/lib/libatlas_r.so) && !defined(WITH_BLAS) +WITH_ATLAS= yes +.endif +.if defined(WITH_ATLAS) +LIB_DEPENDS+= atlas.2:${PORTSDIR}/math/atlas +BLAS= -lf77blas -latlas +LAPACK= -lalapack +.else +LIB_DEPENDS+= blas.2:${PORTSDIR}/math/blas \ + lapack.4:${PORTSDIR}/math/lapack +BLAS= -lblas +LAPACK= -llapack .endif -.if defined(WITH_MPI) -IGNORE= does not work with lam-7 -BUILD_DEPENDS+= mpiCC:${PORTSDIR}/net/lam -RUN_DEPENDS+= lamboot:${PORTSDIR}/net/lam -CONFIGURE_ARGS+=--with-mpi=yes +.if !defined(WITHOUT_UMFPACK) +. if exists(${LOCALBASE}/include/AMD/amd.h) +BUILD_DEPENDS+= ${LOCALBASE}/lib/libamd.a:${PORTSDIR}/math/umfpack +AMDINC= -I${LOCALBASE}/include/AMD +. else +LIB_DEPENDS+= amd.1:${PORTSDIR}/math/suitesparse +AMDINC= -I${LOCALBASE}/include/suitesparse +. endif .endif pre-everything:: +.if !defined(WITH_ATLAS) @${ECHO_MSG} '**********************************************************' @${ECHO_MSG} '* You can define the following variables: *' - @${ECHO_MSG} '* - WITH_BLAS: to avoid atlas; *' - @${ECHO_MSG} '* - WITH_MPI: to build the MPI executable; *' - @${ECHO_MSG} '* - WITHOUT_XFT: to turn off Xft support; *' - @${ECHO_MSG} '* - WITHOUT_THREADS: to disable multi-threading support. *' + @${ECHO_MSG} '* - WITH_ATLAS: to link with atlas *' + @${ECHO_MSG} '* - WITHOUT_FFTW remove FFTW support *' + @${ECHO_MSG} '* - WITHOUT_ARPACK remove Arpack support *' + @${ECHO_MSG} '* - WITHOUT_AVCALL remove FFCALL support *' + @${ECHO_MSG} '* - WITHOUT_UMFPACK remove UMFPACK support *' @${ECHO_MSG} '**********************************************************' +.endif pre-configure: -.if defined(NOPORTDOCS) - ${REINPLACE_CMD} -e 's|SUBDIRS = mdc html|SUBDIRS = mdc|' ${WRKSRC}/help/Makefile.in -.endif - ${FIND} ${WRKSRC} -name Makefile.in -exec ${REINPLACE_CMD} \ - -e 's|-I@top_srcdir@/libs/libFLTK|-I${X11BASE}/include|; \ - s|$$(JPEGLIB) @top_builddir@/libs/libFLTK/libFLTK.a||; \ - s|@top_builddir@/libs/libFLTK/libFLTK.a|`fltk-config --use-images --ldflags`|; \ - s|-I@top_srcdir@/libs/libUMFPACK/UMFPACK/Include|-I${LOCALBASE}/include/UMFPACK|; \ - s|@top_builddir@/libs/libUMFPACK/UMFPACK/libUMFPACKdi.a|${LOCALBASE}/lib/libumfpack.a|; \ - s|@top_builddir@/libs/libUMFPACK/UMFPACK/libUMFPACKzi.a||; \ - s|@top_builddir@/libs/libUMFPACK/AMD/libAMD.a|${LOCALBASE}/lib/libamd.a|; \ - s|@top_builddir@/libs/libARPACK/libARPACK.a|${LOCALBASE}/lib/libarpack.a|; \ - s|-L/sw/lib ||' {} \; + ${REINPLACE_CMD} -e 's| == x| = x|g' ${WRKSRC}/${CONFIGURE_SCRIPT} .include <bsd.port.post.mk> diff --git a/math/freemat/distinfo b/math/freemat/distinfo index b97c891bae19..24c8ec06537c 100644 --- a/math/freemat/distinfo +++ b/math/freemat/distinfo @@ -1,3 +1,3 @@ -MD5 (FreeMat-1.10-1.tar.gz) = 46c02f2c8c882c7d6f968d21c5a62b27 -SHA256 (FreeMat-1.10-1.tar.gz) = 171614a509047c2b810514701799725dcfc241e54e7b81c937e5281515d4a3ac -SIZE (FreeMat-1.10-1.tar.gz) = 7557831 +MD5 (FreeMat-3.0.tar.gz) = d972d9393227fce4925e810034f02538 +SHA256 (FreeMat-3.0.tar.gz) = c49ddfe590ebc8497a5d8191dd76c459c2bf9420556c8bdb93ce2f77a28a08cd +SIZE (FreeMat-3.0.tar.gz) = 4592674 diff --git a/math/freemat/files/patch-configure b/math/freemat/files/patch-configure index 55b64818df27..53ac859c03f0 100644 --- a/math/freemat/files/patch-configure +++ b/math/freemat/files/patch-configure @@ -1,20 +1,472 @@ ---- configure.orig Wed Mar 16 16:39:00 2005 -+++ configure Sun Mar 27 23:34:08 2005 -@@ -7731,7 +7731,7 @@ - PICFLAG=0 - SHAREDSUFFIX="" - FLUID="fluid" -- LINKSHARED="-L../lib -lfltk_images -lfltk_forms -lfltk" -+ LINKSHARED="-lfltk_images -lfltk_forms -lfltk" +--- configure.orig Tue Jan 9 05:33:15 2007 ++++ configure Fri Feb 9 23:53:27 2007 +@@ -6083,234 +6083,6 @@ + LIBS="-lamd $LIBS" fi +-echo "$as_me:$LINENO: checking for umfpack_zl_solve in -lumfpack" >&5 +-echo $ECHO_N "checking for umfpack_zl_solve in -lumfpack... $ECHO_C" >&6 +-if test "${ac_cv_lib_umfpack_umfpack_zl_solve+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- ac_check_lib_save_LIBS=$LIBS +-LIBS="-lumfpack $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +- +-/* Override any gcc2 internal prototype to avoid an error. */ +-#ifdef __cplusplus +-extern "C" +-#endif +-/* We use char because int might match the return type of a gcc2 +- builtin and then its argument prototype would still apply. */ +-char umfpack_zl_solve (); +-int +-main () +-{ +-umfpack_zl_solve (); +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 +- (eval $ac_link) 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_c_werror_flag" +- || test ! -s conftest.err' +- { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 +- (eval $ac_try) 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest$ac_exeext' +- { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 +- (eval $ac_try) 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then +- ac_cv_lib_umfpack_umfpack_zl_solve=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +-ac_cv_lib_umfpack_umfpack_zl_solve=no +-fi +-rm -f conftest.err conftest.$ac_objext \ +- conftest$ac_exeext conftest.$ac_ext +-LIBS=$ac_check_lib_save_LIBS +-fi +-echo "$as_me:$LINENO: result: $ac_cv_lib_umfpack_umfpack_zl_solve" >&5 +-echo "${ECHO_T}$ac_cv_lib_umfpack_umfpack_zl_solve" >&6 +-if test $ac_cv_lib_umfpack_umfpack_zl_solve = yes; then +- found_umfpack="yes" +-else +- found_umfpack="no" +-fi +- +-if test "${ac_cv_header_umfpack_h+set}" = set; then +- echo "$as_me:$LINENO: checking for umfpack.h" >&5 +-echo $ECHO_N "checking for umfpack.h... $ECHO_C" >&6 +-if test "${ac_cv_header_umfpack_h+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-echo "$as_me:$LINENO: result: $ac_cv_header_umfpack_h" >&5 +-echo "${ECHO_T}$ac_cv_header_umfpack_h" >&6 +-else +- # Is the header compilable? +-echo "$as_me:$LINENO: checking umfpack.h usability" >&5 +-echo $ECHO_N "checking umfpack.h usability... $ECHO_C" >&6 +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <umfpack.h> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 +- (eval $ac_compile) 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_c_werror_flag" +- || test ! -s conftest.err' +- { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 +- (eval $ac_try) 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest.$ac_objext' +- { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 +- (eval $ac_try) 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then +- ac_header_compiler=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +-ac_header_compiler=no +-fi +-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext +-echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6 +- +-# Is the header present? +-echo "$as_me:$LINENO: checking umfpack.h presence" >&5 +-echo $ECHO_N "checking umfpack.h presence... $ECHO_C" >&6 +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <umfpack.h> +-_ACEOF +-if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 +- (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null; then +- if test -s conftest.err; then +- ac_cpp_err=$ac_c_preproc_warn_flag +- ac_cpp_err=$ac_cpp_err$ac_c_werror_flag +- else +- ac_cpp_err= +- fi +-else +- ac_cpp_err=yes +-fi +-if test -z "$ac_cpp_err"; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_preproc=no +-fi +-rm -f conftest.err conftest.$ac_ext +-echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6 +- +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: umfpack.h: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: umfpack.h: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: umfpack.h: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: umfpack.h: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: umfpack.h: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: umfpack.h: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: umfpack.h: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: umfpack.h: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: umfpack.h: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: umfpack.h: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: umfpack.h: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: umfpack.h: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: umfpack.h: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: umfpack.h: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: umfpack.h: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: umfpack.h: in the future, the compiler will take precedence" >&2;} +- ( +- cat <<\_ASBOX +-## ------------------------------------------ ## +-## Report this to the AC_PACKAGE_NAME lists. ## +-## ------------------------------------------ ## +-_ASBOX +- ) | +- sed "s/^/$as_me: WARNING: /" >&2 +- ;; +-esac +-echo "$as_me:$LINENO: checking for umfpack.h" >&5 +-echo $ECHO_N "checking for umfpack.h... $ECHO_C" >&6 +-if test "${ac_cv_header_umfpack_h+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- ac_cv_header_umfpack_h=$ac_header_preproc +-fi +-echo "$as_me:$LINENO: result: $ac_cv_header_umfpack_h" >&5 +-echo "${ECHO_T}$ac_cv_header_umfpack_h" >&6 +- +-fi +-if test $ac_cv_header_umfpack_h = yes; then +- : +-else +- found_umfpack="no" +-fi +- +- +- +-if test x"$found_umfpack" == xyes; then +- LIBS="-lumfpack $LIBS" +-fi +-if test x"$found_amd" == xyes; then +- if test x"$found_umfpack" == xyes; then +- +-cat >>confdefs.h <<\_ACEOF +-#define HAVE_UMFPACK 1 +-_ACEOF +- +- fi +-fi +- + echo "$as_me:$LINENO: checking for fftwf_malloc in -lfftw3f" >&5 + echo $ECHO_N "checking for fftwf_malloc in -lfftw3f... $ECHO_C" >&6 + if test "${ac_cv_lib_fftw3f_fftwf_malloc+set}" = set; then +@@ -8149,6 +7921,234 @@ + LIBS="$BLAS_LIBS $LIBS" + fi -@@ -16937,7 +16937,7 @@ - ac_config_headers="$ac_config_headers config.h:configh.in" ++# FreeBSD: umfpack requires blas. ++echo "$as_me:$LINENO: checking for umfpack_zl_solve in -lumfpack" >&5 ++echo $ECHO_N "checking for umfpack_zl_solve in -lumfpack... $ECHO_C" >&6 ++if test "${ac_cv_lib_umfpack_umfpack_zl_solve+set}" = set; then ++ echo $ECHO_N "(cached) $ECHO_C" >&6 ++else ++ ac_check_lib_save_LIBS=$LIBS ++LIBS="-lumfpack $LIBS" ++cat >conftest.$ac_ext <<_ACEOF ++/* confdefs.h. */ ++_ACEOF ++cat confdefs.h >>conftest.$ac_ext ++cat >>conftest.$ac_ext <<_ACEOF ++/* end confdefs.h. */ ++ ++/* Override any gcc2 internal prototype to avoid an error. */ ++#ifdef __cplusplus ++extern "C" ++#endif ++/* We use char because int might match the return type of a gcc2 ++ builtin and then its argument prototype would still apply. */ ++char umfpack_zl_solve (); ++int ++main () ++{ ++umfpack_zl_solve (); ++ ; ++ return 0; ++} ++_ACEOF ++rm -f conftest.$ac_objext conftest$ac_exeext ++if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 ++ (eval $ac_link) 2>conftest.er1 ++ ac_status=$? ++ grep -v '^ *+' conftest.er1 >conftest.err ++ rm -f conftest.er1 ++ cat conftest.err >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ (exit $ac_status); } && ++ { ac_try='test -z "$ac_c_werror_flag" ++ || test ! -s conftest.err' ++ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 ++ (eval $ac_try) 2>&5 ++ ac_status=$? ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ (exit $ac_status); }; } && ++ { ac_try='test -s conftest$ac_exeext' ++ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 ++ (eval $ac_try) 2>&5 ++ ac_status=$? ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ (exit $ac_status); }; }; then ++ ac_cv_lib_umfpack_umfpack_zl_solve=yes ++else ++ echo "$as_me: failed program was:" >&5 ++sed 's/^/| /' conftest.$ac_ext >&5 ++ ++ac_cv_lib_umfpack_umfpack_zl_solve=no ++fi ++rm -f conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext ++LIBS=$ac_check_lib_save_LIBS ++fi ++echo "$as_me:$LINENO: result: $ac_cv_lib_umfpack_umfpack_zl_solve" >&5 ++echo "${ECHO_T}$ac_cv_lib_umfpack_umfpack_zl_solve" >&6 ++if test $ac_cv_lib_umfpack_umfpack_zl_solve = yes; then ++ found_umfpack="yes" ++else ++ found_umfpack="no" ++fi ++ ++if test "${ac_cv_header_umfpack_h+set}" = set; then ++ echo "$as_me:$LINENO: checking for umfpack.h" >&5 ++echo $ECHO_N "checking for umfpack.h... $ECHO_C" >&6 ++if test "${ac_cv_header_umfpack_h+set}" = set; then ++ echo $ECHO_N "(cached) $ECHO_C" >&6 ++fi ++echo "$as_me:$LINENO: result: $ac_cv_header_umfpack_h" >&5 ++echo "${ECHO_T}$ac_cv_header_umfpack_h" >&6 ++else ++ # Is the header compilable? ++echo "$as_me:$LINENO: checking umfpack.h usability" >&5 ++echo $ECHO_N "checking umfpack.h usability... $ECHO_C" >&6 ++cat >conftest.$ac_ext <<_ACEOF ++/* confdefs.h. */ ++_ACEOF ++cat confdefs.h >>conftest.$ac_ext ++cat >>conftest.$ac_ext <<_ACEOF ++/* end confdefs.h. */ ++$ac_includes_default ++#include <umfpack.h> ++_ACEOF ++rm -f conftest.$ac_objext ++if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 ++ (eval $ac_compile) 2>conftest.er1 ++ ac_status=$? ++ grep -v '^ *+' conftest.er1 >conftest.err ++ rm -f conftest.er1 ++ cat conftest.err >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ (exit $ac_status); } && ++ { ac_try='test -z "$ac_c_werror_flag" ++ || test ! -s conftest.err' ++ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 ++ (eval $ac_try) 2>&5 ++ ac_status=$? ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ (exit $ac_status); }; } && ++ { ac_try='test -s conftest.$ac_objext' ++ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 ++ (eval $ac_try) 2>&5 ++ ac_status=$? ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ (exit $ac_status); }; }; then ++ ac_header_compiler=yes ++else ++ echo "$as_me: failed program was:" >&5 ++sed 's/^/| /' conftest.$ac_ext >&5 ++ ++ac_header_compiler=no ++fi ++rm -f conftest.err conftest.$ac_objext conftest.$ac_ext ++echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++echo "${ECHO_T}$ac_header_compiler" >&6 ++ ++# Is the header present? ++echo "$as_me:$LINENO: checking umfpack.h presence" >&5 ++echo $ECHO_N "checking umfpack.h presence... $ECHO_C" >&6 ++cat >conftest.$ac_ext <<_ACEOF ++/* confdefs.h. */ ++_ACEOF ++cat confdefs.h >>conftest.$ac_ext ++cat >>conftest.$ac_ext <<_ACEOF ++/* end confdefs.h. */ ++#include <umfpack.h> ++_ACEOF ++if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 ++ (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ++ ac_status=$? ++ grep -v '^ *+' conftest.er1 >conftest.err ++ rm -f conftest.er1 ++ cat conftest.err >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ (exit $ac_status); } >/dev/null; then ++ if test -s conftest.err; then ++ ac_cpp_err=$ac_c_preproc_warn_flag ++ ac_cpp_err=$ac_cpp_err$ac_c_werror_flag ++ else ++ ac_cpp_err= ++ fi ++else ++ ac_cpp_err=yes ++fi ++if test -z "$ac_cpp_err"; then ++ ac_header_preproc=yes ++else ++ echo "$as_me: failed program was:" >&5 ++sed 's/^/| /' conftest.$ac_ext >&5 ++ ++ ac_header_preproc=no ++fi ++rm -f conftest.err conftest.$ac_ext ++echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++echo "${ECHO_T}$ac_header_preproc" >&6 ++ ++# So? What about this header? ++case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in ++ yes:no: ) ++ { echo "$as_me:$LINENO: WARNING: umfpack.h: accepted by the compiler, rejected by the preprocessor!" >&5 ++echo "$as_me: WARNING: umfpack.h: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { echo "$as_me:$LINENO: WARNING: umfpack.h: proceeding with the compiler's result" >&5 ++echo "$as_me: WARNING: umfpack.h: proceeding with the compiler's result" >&2;} ++ ac_header_preproc=yes ++ ;; ++ no:yes:* ) ++ { echo "$as_me:$LINENO: WARNING: umfpack.h: present but cannot be compiled" >&5 ++echo "$as_me: WARNING: umfpack.h: present but cannot be compiled" >&2;} ++ { echo "$as_me:$LINENO: WARNING: umfpack.h: check for missing prerequisite headers?" >&5 ++echo "$as_me: WARNING: umfpack.h: check for missing prerequisite headers?" >&2;} ++ { echo "$as_me:$LINENO: WARNING: umfpack.h: see the Autoconf documentation" >&5 ++echo "$as_me: WARNING: umfpack.h: see the Autoconf documentation" >&2;} ++ { echo "$as_me:$LINENO: WARNING: umfpack.h: section \"Present But Cannot Be Compiled\"" >&5 ++echo "$as_me: WARNING: umfpack.h: section \"Present But Cannot Be Compiled\"" >&2;} ++ { echo "$as_me:$LINENO: WARNING: umfpack.h: proceeding with the preprocessor's result" >&5 ++echo "$as_me: WARNING: umfpack.h: proceeding with the preprocessor's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: umfpack.h: in the future, the compiler will take precedence" >&5 ++echo "$as_me: WARNING: umfpack.h: in the future, the compiler will take precedence" >&2;} ++ ( ++ cat <<\_ASBOX ++## ------------------------------------------ ## ++## Report this to the AC_PACKAGE_NAME lists. ## ++## ------------------------------------------ ## ++_ASBOX ++ ) | ++ sed "s/^/$as_me: WARNING: /" >&2 ++ ;; ++esac ++echo "$as_me:$LINENO: checking for umfpack.h" >&5 ++echo $ECHO_N "checking for umfpack.h... $ECHO_C" >&6 ++if test "${ac_cv_header_umfpack_h+set}" = set; then ++ echo $ECHO_N "(cached) $ECHO_C" >&6 ++else ++ ac_cv_header_umfpack_h=$ac_header_preproc ++fi ++echo "$as_me:$LINENO: result: $ac_cv_header_umfpack_h" >&5 ++echo "${ECHO_T}$ac_cv_header_umfpack_h" >&6 ++ ++fi ++if test $ac_cv_header_umfpack_h = yes; then ++ : ++else ++ found_umfpack="no" ++fi ++ ++ ++ ++if test x"$found_umfpack" == xyes; then ++ LIBS="-lumfpack $LIBS" ++fi ++if test x"$found_amd" == xyes; then ++ if test x"$found_umfpack" == xyes; then ++ ++cat >>confdefs.h <<\_ACEOF ++#define HAVE_UMFPACK 1 ++_ACEOF ++ ++ fi ++fi + acx_lapack_ok=no --LAPACK_LIBS="-L\${top_builddir}/libs/libMiniLAPACK -lMiniLAPACK" -+LAPACK_LIBS="-llapack" - - - LIBS="$LAPACK_LIBS $BLAS_LIBS $LIBS $FLIBS $CURSES_LIB $MPILIBS" diff --git a/math/freemat/files/patch-help::html::Makefile.in b/math/freemat/files/patch-help::html::Makefile.in deleted file mode 100644 index d0dbf8309cac..000000000000 --- a/math/freemat/files/patch-help::html::Makefile.in +++ /dev/null @@ -1,15 +0,0 @@ ---- help/html/Makefile.in.orig Wed Mar 16 16:38:46 2005 -+++ help/html/Makefile.in Mon Mar 28 18:23:51 2005 -@@ -873,10 +873,10 @@ - - - install-data-local: -- mkdir -p $(prefix)/share/FreeMat/html -+ mkdir -p $(prefix)/share/doc/freemat - for fname in $(EXTRA_DIST); do \ - echo "Installing manual html file $$fname"; \ -- $(INSTALL) $(srcdir)/$$fname $(prefix)/share/FreeMat/html;\ -+ $(INSTALL) $(srcdir)/$$fname $(prefix)/share/doc/freemat ;\ - done; - uninstall-local: - for fname in $(EXTRA_DIST); do \ diff --git a/math/freemat/files/patch-libs::Makefile.in b/math/freemat/files/patch-libs::Makefile.in deleted file mode 100644 index e4c10da2a3d5..000000000000 --- a/math/freemat/files/patch-libs::Makefile.in +++ /dev/null @@ -1,13 +0,0 @@ ---- libs/Makefile.in.orig Wed Mar 16 16:38:46 2005 -+++ libs/Makefile.in Sun Mar 27 23:36:17 2005 -@@ -229,8 +229,8 @@ - @NEED_JPEG_TRUE@JPEG_DIR = libjpeg6b - @NEED_TIFF_TRUE@TIFF_DIR = libtiff361 - SUBDIRS = libFreeMat libFFTPack libCore libGraphics libXP \ -- $(BLAS_DIR) libMiniLAPACK libffi libf2c $(JPEG_DIR) \ -- $(TIFF_DIR) $(PNG_DIR) libFN libFLTK libUMFPACK libARPACK -+ $(BLAS_DIR) libffi $(JPEG_DIR) \ -+ $(TIFF_DIR) $(PNG_DIR) libFN - - AUTOMAKE_OPTIONS = foreign - all: all-recursive diff --git a/math/freemat/files/patch-libs_libGraphics_HandleAxis.cpp b/math/freemat/files/patch-libs_libGraphics_HandleAxis.cpp new file mode 100644 index 000000000000..979b6fc07442 --- /dev/null +++ b/math/freemat/files/patch-libs_libGraphics_HandleAxis.cpp @@ -0,0 +1,13 @@ +--- ./libs/libGraphics/HandleAxis.cpp.orig Thu Dec 28 15:02:22 2006 ++++ ./libs/libGraphics/HandleAxis.cpp Sat Feb 10 00:07:46 2007 +@@ -28,6 +28,10 @@ + #include "HandleCommands.hpp" + #include <qgl.h> + ++#ifdef __FreeBSD__ ++#define log2(x) log(x)/log(2) ++#endif ++ + // Property list & status + // activepositionproperty + // alim diff --git a/math/freemat/files/patch-libs_libffi_configure b/math/freemat/files/patch-libs_libffi_configure deleted file mode 100644 index ec95035ca52d..000000000000 --- a/math/freemat/files/patch-libs_libffi_configure +++ /dev/null @@ -1,19 +0,0 @@ ---- ./libs/libffi/configure.orig Mon Jun 21 21:27:17 2004 -+++ ./libs/libffi/configure Fri Apr 29 23:36:25 2005 -@@ -3286,7 +3286,7 @@ - sparc-sun-4*) TARGET=SPARC; TARGETDIR=sparc;; - sparc*-sun-*) TARGET=SPARC; TARGETDIR=sparc;; - sparc-*-linux* | sparc-*-netbsdelf*) TARGET=SPARC; TARGETDIR=sparc;; --sparc64-*-linux* | sparc64-*-netbsd*) TARGET=SPARC; TARGETDIR=sparc;; -+sparc64-*-linux* | sparc64-*-netbsd* | sparc64-*-freebsd*) TARGET=SPARC; TARGETDIR=sparc;; - alpha*-*-linux* | alpha*-*-osf* | alpha*-*-freebsd* | alpha*-*-netbsd*) TARGET=ALPHA; TARGETDIR=alpha;; - ia64*-*-*) TARGET=IA64; TARGETDIR=ia64;; - m68k-*-linux*) TARGET=M68K; TARGETDIR=m68k;; -@@ -3306,6 +3306,7 @@ - sh-*-linux* | sh[34]*-*-linux*) TARGET=SH; TARGETDIR=sh;; - sh64-*-linux* | sh5*-*-linux*) TARGET=SH64; TARGETDIR=sh64;; - hppa-*-linux* | parisc-*-linux*) TARGET=PA; TARGETDIR=pa;; -+amd64-portbld-freebsd*) TARGET=X86_64; TARGETDIR=x86;; - esac - - diff --git a/math/freemat/files/patch-src::mac::Makefile.in b/math/freemat/files/patch-src::mac::Makefile.in deleted file mode 100644 index 6eb22e177404..000000000000 --- a/math/freemat/files/patch-src::mac::Makefile.in +++ /dev/null @@ -1,11 +0,0 @@ ---- ./src/mac/Makefile.in.orig Wed Mar 16 16:38:59 2005 -+++ ./src/mac/Makefile.in Sun Mar 27 21:43:53 2005 -@@ -246,7 +246,7 @@ - @NEED_JPEG_TRUE@JPEGLIB = @top_builddir@/libs/libjpeg6b/libjpeg.a - INCLUDES = -I@top_srcdir@/libs/libFreeMat -I@top_srcdir@/libs/libCore -I@top_srcdir@/libs/libFN -I@top_srcdir@/libs/libGraphics -I@top_builddir@/libs/libffi/include -I@top_srcdir@/libs/libXP -I@top_srcdir@/libs/libFLTK - FreeMat_SOURCES = main.cpp --FreeMat_DEPENDENCIES = @top_builddir@/libs/libCore/libCore.a @top_builddir@/libs/libFN/libFN.a @top_builddir@/libs/libGraphics/libGraphics.a @top_builddir@/libs/libFreeMat/libFreeMat.a @top_builddir@/libs/libARPACK/libARPACK.a @top_builddir@/libs/libUMFPACK/UMFPACK/libUMFPACKdi.a @top_builddir@/libs/libUMFPACK/UMFPACK/libUMFPACKzi.a @top_builddir@/libs/libUMFPACK/AMD/libAMD.a @top_builddir@/libs/libFFTPack/libFFTPack.a @top_builddir@/libs/libffi/libffi.a @top_builddir@/libs/libXP/libXP.a $(PNGLIB) $(TIFFLIB) $(JPEGLIB) @top_builddir@/libs/libFLTK/libFLTK.a -+FreeMat_DEPENDENCIES = @top_builddir@/libs/libCore/libCore.a @top_builddir@/libs/libFN/libFN.a @top_builddir@/libs/libGraphics/libGraphics.a @top_builddir@/libs/libFreeMat/libFreeMat.a @top_builddir@/libs/libFFTPack/libFFTPack.a @top_builddir@/libs/libffi/libffi.a @top_builddir@/libs/libXP/libXP.a $(PNGLIB) $(TIFFLIB) $(JPEGLIB) @top_builddir@/libs/libFLTK/libFLTK.a - FreeMat_LDADD = @top_builddir@/libs/libCore/libCore.a @top_builddir@/libs/libFN/libFN.a @top_builddir@/libs/libGraphics/libGraphics.a @top_builddir@/libs/libFFTPack/libFFTPack.a @top_builddir@/libs/libXP/libXP.a @top_builddir@/libs/libFreeMat/libFreeMat.a @top_builddir@/libs/libARPACK/libARPACK.a @top_builddir@/libs/libUMFPACK/UMFPACK/libUMFPACKdi.a @top_builddir@/libs/libUMFPACK/UMFPACK/libUMFPACKzi.a @top_builddir@/libs/libUMFPACK/AMD/libAMD.a @top_builddir@/libs/libXP/libXP.a @top_builddir@/libs/libFLTK/libFLTK.a @top_builddir@/libs/libffi/libffi.a $(PNGLIB) $(TIFFLIB) $(JPEGLIB) -lg2c - all: all-am - diff --git a/math/freemat/files/patch-src::x11::Makefile.in b/math/freemat/files/patch-src::x11::Makefile.in deleted file mode 100644 index dfc91fb5f3da..000000000000 --- a/math/freemat/files/patch-src::x11::Makefile.in +++ /dev/null @@ -1,11 +0,0 @@ ---- src/x11/Makefile.in.orig Wed Mar 16 16:38:59 2005 -+++ src/x11/Makefile.in Sun Mar 27 22:28:54 2005 -@@ -255,7 +255,7 @@ - Terminal.cpp \ - Terminal.hpp - --FreeMat_DEPENDENCIES = @top_builddir@/libs/libCore/libCore.a @top_builddir@/libs/libFN/libFN.a @top_builddir@/libs/libGraphics/libGraphics.a @top_builddir@/libs/libFreeMat/libFreeMat.a @top_builddir@/libs/libARPACK/libARPACK.a @top_builddir@/libs/libUMFPACK/UMFPACK/libUMFPACKdi.a @top_builddir@/libs/libUMFPACK/UMFPACK/libUMFPACKzi.a @top_builddir@/libs/libUMFPACK/AMD/libAMD.a @top_builddir@/libs/libFFTPack/libFFTPack.a @top_builddir@/libs/libffi/libffi.a @top_builddir@/libs/libXP/libXP.a $(PNGLIB) $(TIFFLIB) $(JPEGLIB) @top_builddir@/libs/libFLTK/libFLTK.a -+FreeMat_DEPENDENCIES = @top_builddir@/libs/libCore/libCore.a @top_builddir@/libs/libFN/libFN.a @top_builddir@/libs/libGraphics/libGraphics.a @top_builddir@/libs/libFreeMat/libFreeMat.a @top_builddir@/libs/libARPACK/libARPACK.a @top_builddir@/libs/libUMFPACK/UMFPACK/libUMFPACKdi.a @top_builddir@/libs/libUMFPACK/UMFPACK/libUMFPACKzi.a @top_builddir@/libs/libUMFPACK/AMD/libAMD.a @top_builddir@/libs/libFFTPack/libFFTPack.a @top_builddir@/libs/libXP/libXP.a $(PNGLIB) $(TIFFLIB) $(JPEGLIB) @top_builddir@/libs/libFLTK/libFLTK.a - FreeMat_LDADD = @top_builddir@/libs/libCore/libCore.a @top_builddir@/libs/libFN/libFN.a @top_builddir@/libs/libGraphics/libGraphics.a @top_builddir@/libs/libFreeMat/libFreeMat.a @top_builddir@/libs/libARPACK/libARPACK.a @top_builddir@/libs/libUMFPACK/UMFPACK/libUMFPACKdi.a @top_builddir@/libs/libUMFPACK/UMFPACK/libUMFPACKzi.a @top_builddir@/libs/libUMFPACK/AMD/libAMD.a @top_builddir@/libs/libFFTPack/libFFTPack.a @top_builddir@/libs/libffi/libffi.a @top_builddir@/libs/libXP/libXP.a @top_builddir@/libs/libFLTK/libFLTK.a $(PNGLIB) $(TIFFLIB) $(JPEGLIB) @X_PRE_LIBS@ @X_LIBS@ -lX11 @X_EXTRA_LIBS@ -L/sw/lib -lg2c - all: all-am - diff --git a/math/freemat/files/pkg-message.in b/math/freemat/files/pkg-message.in deleted file mode 100644 index 155b27c19486..000000000000 --- a/math/freemat/files/pkg-message.in +++ /dev/null @@ -1,5 +0,0 @@ -****************************************************** - FreeMat installation complete. - You must set the environment variable FREEMAT_PATH - to include %%DATADIR%%/MFiles. -****************************************************** diff --git a/math/freemat/pkg-plist b/math/freemat/pkg-plist index 70d73adb7a70..045658eb9573 100644 --- a/math/freemat/pkg-plist +++ b/math/freemat/pkg-plist @@ -1,770 +1,1454 @@ bin/FreeMat -%%DATADIR%%/MFiles/abs.mdc -%%DATADIR%%/MFiles/acos.mdc -%%DATADIR%%/MFiles/asin.mdc -%%DATADIR%%/MFiles/atan.mdc -%%DATADIR%%/MFiles/atan2.mdc -%%DATADIR%%/MFiles/axis.mdc -%%DATADIR%%/MFiles/bin2int.mdc -%%DATADIR%%/MFiles/bind.m -%%DATADIR%%/MFiles/break.mdc -%%DATADIR%%/MFiles/cd.mdc -%%DATADIR%%/MFiles/ceil.mdc -%%DATADIR%%/MFiles/cell.mdc -%%DATADIR%%/MFiles/circshift.m -%%DATADIR%%/MFiles/clear.mdc -%%DATADIR%%/MFiles/close.mdc -%%DATADIR%%/MFiles/colon.mdc -%%DATADIR%%/MFiles/colormap.mdc -%%DATADIR%%/MFiles/comparisonops.mdc -%%DATADIR%%/MFiles/complex.mdc -%%DATADIR%%/MFiles/conj.mdc -%%DATADIR%%/MFiles/continue.mdc -%%DATADIR%%/MFiles/copper.m -%%DATADIR%%/MFiles/copy.mdc -%%DATADIR%%/MFiles/cos.mdc -%%DATADIR%%/MFiles/cot.mdc -%%DATADIR%%/MFiles/csc.mdc -%%DATADIR%%/MFiles/cumsum.mdc -%%DATADIR%%/MFiles/dawson.mdc -%%DATADIR%%/MFiles/dbauto.mdc -%%DATADIR%%/MFiles/dbdelete.mdc -%%DATADIR%%/MFiles/dblist.mdc -%%DATADIR%%/MFiles/dbstep.mdc -%%DATADIR%%/MFiles/dbstop.mdc -%%DATADIR%%/MFiles/dcomplex.mdc -%%DATADIR%%/MFiles/diag.mdc -%%DATADIR%%/MFiles/disp.mdc -%%DATADIR%%/MFiles/dotleftdivide.mdc -%%DATADIR%%/MFiles/dotpower.mdc -%%DATADIR%%/MFiles/dotrightdivide.mdc -%%DATADIR%%/MFiles/dottimes.mdc -%%DATADIR%%/MFiles/double.mdc -%%DATADIR%%/MFiles/e.mdc -%%DATADIR%%/MFiles/ei.mdc -%%DATADIR%%/MFiles/eig.mdc -%%DATADIR%%/MFiles/eigs.mdc -%%DATADIR%%/MFiles/eone.mdc -%%DATADIR%%/MFiles/eps.mdc -%%DATADIR%%/MFiles/erf.mdc -%%DATADIR%%/MFiles/erfc.mdc -%%DATADIR%%/MFiles/erfcx.mdc -%%DATADIR%%/MFiles/error.mdc -%%DATADIR%%/MFiles/eval.mdc -%%DATADIR%%/MFiles/exist.mdc -%%DATADIR%%/MFiles/exit.m -%%DATADIR%%/MFiles/exp.mdc -%%DATADIR%%/MFiles/expei.mdc -%%DATADIR%%/MFiles/eye.m -%%DATADIR%%/MFiles/fclose.mdc -%%DATADIR%%/MFiles/feof.mdc -%%DATADIR%%/MFiles/feps.mdc -%%DATADIR%%/MFiles/feval.mdc -%%DATADIR%%/MFiles/fft.mdc -%%DATADIR%%/MFiles/fgetline.mdc -%%DATADIR%%/MFiles/figure.mdc -%%DATADIR%%/MFiles/find.mdc -%%DATADIR%%/MFiles/fitfun.mdc -%%DATADIR%%/MFiles/flipdim.m -%%DATADIR%%/MFiles/fliplr.m -%%DATADIR%%/MFiles/flipud.m -%%DATADIR%%/MFiles/float.mdc -%%DATADIR%%/MFiles/floor.mdc -%%DATADIR%%/MFiles/fopen.mdc -%%DATADIR%%/MFiles/for.mdc -%%DATADIR%%/MFiles/fprintf.mdc -%%DATADIR%%/MFiles/fread.mdc -%%DATADIR%%/MFiles/fscanf.mdc -%%DATADIR%%/MFiles/fseek.mdc -%%DATADIR%%/MFiles/ftell.mdc -%%DATADIR%%/MFiles/full.mdc -%%DATADIR%%/MFiles/function.mdc -%%DATADIR%%/MFiles/fwrite.mdc -%%DATADIR%%/MFiles/gamma.mdc -%%DATADIR%%/MFiles/gammaln.mdc -%%DATADIR%%/MFiles/gausfit.m -%%DATADIR%%/MFiles/getline.mdc -%%DATADIR%%/MFiles/getpath.mdc -%%DATADIR%%/MFiles/getprintlimit.mdc -%%DATADIR%%/MFiles/gfitfun.m -%%DATADIR%%/MFiles/global.mdc -%%DATADIR%%/MFiles/gray.m -%%DATADIR%%/MFiles/grid.mdc -%%DATADIR%%/MFiles/help.mdc -%%DATADIR%%/MFiles/hermitian.mdc -%%DATADIR%%/MFiles/hold.mdc -%%DATADIR%%/MFiles/i.mdc -%%DATADIR%%/MFiles/idiv.m -%%DATADIR%%/MFiles/if.mdc -%%DATADIR%%/MFiles/imag.mdc -%%DATADIR%%/MFiles/image.mdc -%%DATADIR%%/MFiles/import.mdc -%%DATADIR%%/MFiles/indexing.mdc -%%DATADIR%%/MFiles/inf.mdc -%%DATADIR%%/MFiles/int16.mdc -%%DATADIR%%/MFiles/int2bin.mdc -%%DATADIR%%/MFiles/int32.mdc -%%DATADIR%%/MFiles/int8.mdc -%%DATADIR%%/MFiles/interplin1.mdc -%%DATADIR%%/MFiles/isa.m -%%DATADIR%%/MFiles/isempty.mdc -%%DATADIR%%/MFiles/isinf.mdc -%%DATADIR%%/MFiles/isnan.mdc -%%DATADIR%%/MFiles/isset.mdc -%%DATADIR%%/MFiles/issparse.mdc -%%DATADIR%%/MFiles/keyboard.mdc -%%DATADIR%%/MFiles/keywords.mdc -%%DATADIR%%/MFiles/lasterr.mdc -%%DATADIR%%/MFiles/leftdivide.mdc -%%DATADIR%%/MFiles/legend.mdc -%%DATADIR%%/MFiles/length.m -%%DATADIR%%/MFiles/linspace.m -%%DATADIR%%/MFiles/load.mdc -%%DATADIR%%/MFiles/loadlib.mdc -%%DATADIR%%/MFiles/log.mdc -%%DATADIR%%/MFiles/log10.m -%%DATADIR%%/MFiles/log2.m -%%DATADIR%%/MFiles/logicalops.mdc -%%DATADIR%%/MFiles/ls.mdc -%%DATADIR%%/MFiles/lu.mdc -%%DATADIR%%/MFiles/matrix.mdc -%%DATADIR%%/MFiles/max.mdc -%%DATADIR%%/MFiles/mean.mdc -%%DATADIR%%/MFiles/min.mdc -%%DATADIR%%/MFiles/minus.mdc -%%DATADIR%%/MFiles/mod.m -%%DATADIR%%/MFiles/mpiallreduce.mdc -%%DATADIR%%/MFiles/mpibarrier.mdc -%%DATADIR%%/MFiles/mpibcast.mdc -%%DATADIR%%/MFiles/mpicommgetparent.mdc -%%DATADIR%%/MFiles/mpicommrank.mdc -%%DATADIR%%/MFiles/mpicommsize.mdc -%%DATADIR%%/MFiles/mpicommspawn.mdc -%%DATADIR%%/MFiles/mpifinalize.mdc -%%DATADIR%%/MFiles/mpiinit.mdc -%%DATADIR%%/MFiles/mpiinitialized.mdc -%%DATADIR%%/MFiles/mpiintercommmerge.mdc -%%DATADIR%%/MFiles/mpirecv.mdc -%%DATADIR%%/MFiles/mpireduce.mdc -%%DATADIR%%/MFiles/mpirun.m -%%DATADIR%%/MFiles/mpisend.mdc -%%DATADIR%%/MFiles/mpiserver.m -%%DATADIR%%/MFiles/mprintimage.m -%%DATADIR%%/MFiles/mprintplot.m -%%DATADIR%%/MFiles/nan.mdc -%%DATADIR%%/MFiles/nargin.mdc -%%DATADIR%%/MFiles/nargout.mdc -%%DATADIR%%/MFiles/nnz.mdc -%%DATADIR%%/MFiles/nonzeros.m -%%DATADIR%%/MFiles/norm.m -%%DATADIR%%/MFiles/numel.m -%%DATADIR%%/MFiles/ones.mdc -%%DATADIR%%/MFiles/pcode.mdc -%%DATADIR%%/MFiles/persistent.mdc -%%DATADIR%%/MFiles/pi.mdc -%%DATADIR%%/MFiles/pinv.m -%%DATADIR%%/MFiles/plot.mdc -%%DATADIR%%/MFiles/plus.mdc -%%DATADIR%%/MFiles/point.mdc -%%DATADIR%%/MFiles/polyfit.m -%%DATADIR%%/MFiles/polyval.m -%%DATADIR%%/MFiles/popdir.m -%%DATADIR%%/MFiles/power.mdc -%%DATADIR%%/MFiles/print.mdc -%%DATADIR%%/MFiles/printf.mdc -%%DATADIR%%/MFiles/prod.mdc -%%DATADIR%%/MFiles/psi.mdc -%%DATADIR%%/MFiles/pushdir.m -%%DATADIR%%/MFiles/pwd.mdc -%%DATADIR%%/MFiles/qr.mdc -%%DATADIR%%/MFiles/quit.mdc -%%DATADIR%%/MFiles/rand.mdc -%%DATADIR%%/MFiles/randbeta.mdc -%%DATADIR%%/MFiles/randbin.mdc -%%DATADIR%%/MFiles/randchi.mdc -%%DATADIR%%/MFiles/randexp.mdc -%%DATADIR%%/MFiles/randf.mdc -%%DATADIR%%/MFiles/randgamma.mdc -%%DATADIR%%/MFiles/randi.mdc -%%DATADIR%%/MFiles/randmulti.mdc -%%DATADIR%%/MFiles/randn.mdc -%%DATADIR%%/MFiles/randnbin.mdc -%%DATADIR%%/MFiles/randnchi.mdc -%%DATADIR%%/MFiles/randnf.mdc -%%DATADIR%%/MFiles/randp.mdc -%%DATADIR%%/MFiles/rank.m -%%DATADIR%%/MFiles/rawread.m -%%DATADIR%%/MFiles/real.mdc -%%DATADIR%%/MFiles/repmat.mdc -%%DATADIR%%/MFiles/rescan.m -%%DATADIR%%/MFiles/reshape.m -%%DATADIR%%/MFiles/reshape.mdc -%%DATADIR%%/MFiles/retall.mdc -%%DATADIR%%/MFiles/return.mdc -%%DATADIR%%/MFiles/rightdivide.mdc -%%DATADIR%%/MFiles/save.mdc -%%DATADIR%%/MFiles/script.mdc -%%DATADIR%%/MFiles/sec.mdc -%%DATADIR%%/MFiles/seed.mdc -%%DATADIR%%/MFiles/setpath.mdc -%%DATADIR%%/MFiles/setprintlimit.mdc -%%DATADIR%%/MFiles/sin.mdc -%%DATADIR%%/MFiles/size.mdc -%%DATADIR%%/MFiles/sizefig.mdc -%%DATADIR%%/MFiles/sleep.mdc -%%DATADIR%%/MFiles/sort.mdc -%%DATADIR%%/MFiles/source.mdc -%%DATADIR%%/MFiles/sparse.mdc -%%DATADIR%%/MFiles/special.mdc -%%DATADIR%%/MFiles/speye.m -%%DATADIR%%/MFiles/spones.mdc -%%DATADIR%%/MFiles/sprand.m -%%DATADIR%%/MFiles/sprandn.m -%%DATADIR%%/MFiles/sprintf.mdc -%%DATADIR%%/MFiles/spy.m -%%DATADIR%%/MFiles/sqrt.m -%%DATADIR%%/MFiles/squeeze.m -%%DATADIR%%/MFiles/std.m -%%DATADIR%%/MFiles/str2num.mdc -%%DATADIR%%/MFiles/strcmp.mdc -%%DATADIR%%/MFiles/string.mdc -%%DATADIR%%/MFiles/struct.mdc -%%DATADIR%%/MFiles/sum.mdc -%%DATADIR%%/MFiles/svd.mdc -%%DATADIR%%/MFiles/switch.mdc -%%DATADIR%%/MFiles/system.mdc -%%DATADIR%%/MFiles/tan.mdc -%%DATADIR%%/MFiles/teps.m -%%DATADIR%%/MFiles/tic.mdc -%%DATADIR%%/MFiles/times.mdc -%%DATADIR%%/MFiles/title.mdc -%%DATADIR%%/MFiles/toc.mdc -%%DATADIR%%/MFiles/transpose.mdc -%%DATADIR%%/MFiles/try.mdc -%%DATADIR%%/MFiles/typeof.mdc -%%DATADIR%%/MFiles/uint16.mdc -%%DATADIR%%/MFiles/uint32.mdc -%%DATADIR%%/MFiles/uint8.mdc -%%DATADIR%%/MFiles/unique.mdc -%%DATADIR%%/MFiles/var.mdc -%%DATADIR%%/MFiles/varargin.mdc -%%DATADIR%%/MFiles/varargout.mdc -%%DATADIR%%/MFiles/where.mdc -%%DATADIR%%/MFiles/which.mdc -%%DATADIR%%/MFiles/while.mdc -%%DATADIR%%/MFiles/who.mdc -%%DATADIR%%/MFiles/winlev.mdc -%%DATADIR%%/MFiles/xlabel.mdc -%%DATADIR%%/MFiles/xlim.m -%%DATADIR%%/MFiles/ylabel.mdc -%%DATADIR%%/MFiles/ylim.m -%%DATADIR%%/MFiles/zeros.mdc -%%DATADIR%%/MFiles/zoom.mdc -%%PORTDOCS%%%%DOCSDIR%%/acosplot.png -%%PORTDOCS%%%%DOCSDIR%%/asinplot.png -%%PORTDOCS%%%%DOCSDIR%%/atan2plot.png -%%PORTDOCS%%%%DOCSDIR%%/atanplot.png -%%PORTDOCS%%%%DOCSDIR%%/axis1.png -%%PORTDOCS%%%%DOCSDIR%%/axis2.png -%%PORTDOCS%%%%DOCSDIR%%/axis3.png -%%PORTDOCS%%%%DOCSDIR%%/axis4.png -%%PORTDOCS%%%%DOCSDIR%%/betapdf.png -%%PORTDOCS%%%%DOCSDIR%%/chipdf.png -%%PORTDOCS%%%%DOCSDIR%%/colormap1.png -%%PORTDOCS%%%%DOCSDIR%%/colormap2.png -%%PORTDOCS%%%%DOCSDIR%%/colormap3.png -%%PORTDOCS%%%%DOCSDIR%%/colormap4.png -%%PORTDOCS%%%%DOCSDIR%%/colormap5.png -%%PORTDOCS%%%%DOCSDIR%%/colormap6.png -%%PORTDOCS%%%%DOCSDIR%%/colormap7.png -%%PORTDOCS%%%%DOCSDIR%%/contents.png -%%PORTDOCS%%%%DOCSDIR%%/copper1.png -%%PORTDOCS%%%%DOCSDIR%%/cosplot.png -%%PORTDOCS%%%%DOCSDIR%%/cotplot.png -%%PORTDOCS%%%%DOCSDIR%%/cscplot.png -%%PORTDOCS%%%%DOCSDIR%%/dawson1.png -%%PORTDOCS%%%%DOCSDIR%%/ei1.png -%%PORTDOCS%%%%DOCSDIR%%/eone1.png -%%PORTDOCS%%%%DOCSDIR%%/erf1.png -%%PORTDOCS%%%%DOCSDIR%%/erfc1.png -%%PORTDOCS%%%%DOCSDIR%%/erfcx1.png -%%PORTDOCS%%%%DOCSDIR%%/expei1.png -%%PORTDOCS%%%%DOCSDIR%%/expplot1.png -%%PORTDOCS%%%%DOCSDIR%%/expplot2.png -%%PORTDOCS%%%%DOCSDIR%%/fft1.png -%%PORTDOCS%%%%DOCSDIR%%/fft2.png -%%PORTDOCS%%%%DOCSDIR%%/gamma1.png -%%PORTDOCS%%%%DOCSDIR%%/gammaln1.png -%%PORTDOCS%%%%DOCSDIR%%/gausfit1.png -%%PORTDOCS%%%%DOCSDIR%%/gray1.png -%%PORTDOCS%%%%DOCSDIR%%/grid1.png -%%PORTDOCS%%%%DOCSDIR%%/grid2.png -%%PORTDOCS%%%%DOCSDIR%%/hold1.png -%%PORTDOCS%%%%DOCSDIR%%/hold2.png -%%PORTDOCS%%%%DOCSDIR%%/image1.png -%%PORTDOCS%%%%DOCSDIR%%/img1.png -%%PORTDOCS%%%%DOCSDIR%%/img10.png -%%PORTDOCS%%%%DOCSDIR%%/img100.png -%%PORTDOCS%%%%DOCSDIR%%/img101.png -%%PORTDOCS%%%%DOCSDIR%%/img102.png -%%PORTDOCS%%%%DOCSDIR%%/img103.png -%%PORTDOCS%%%%DOCSDIR%%/img104.png -%%PORTDOCS%%%%DOCSDIR%%/img105.png -%%PORTDOCS%%%%DOCSDIR%%/img106.png -%%PORTDOCS%%%%DOCSDIR%%/img107.png -%%PORTDOCS%%%%DOCSDIR%%/img108.png -%%PORTDOCS%%%%DOCSDIR%%/img109.png -%%PORTDOCS%%%%DOCSDIR%%/img11.png -%%PORTDOCS%%%%DOCSDIR%%/img110.png -%%PORTDOCS%%%%DOCSDIR%%/img111.png -%%PORTDOCS%%%%DOCSDIR%%/img112.png -%%PORTDOCS%%%%DOCSDIR%%/img113.png -%%PORTDOCS%%%%DOCSDIR%%/img114.png -%%PORTDOCS%%%%DOCSDIR%%/img115.png -%%PORTDOCS%%%%DOCSDIR%%/img116.png -%%PORTDOCS%%%%DOCSDIR%%/img117.png -%%PORTDOCS%%%%DOCSDIR%%/img118.png -%%PORTDOCS%%%%DOCSDIR%%/img119.png -%%PORTDOCS%%%%DOCSDIR%%/img12.png -%%PORTDOCS%%%%DOCSDIR%%/img120.png -%%PORTDOCS%%%%DOCSDIR%%/img121.png -%%PORTDOCS%%%%DOCSDIR%%/img122.png -%%PORTDOCS%%%%DOCSDIR%%/img123.png -%%PORTDOCS%%%%DOCSDIR%%/img124.png -%%PORTDOCS%%%%DOCSDIR%%/img125.png -%%PORTDOCS%%%%DOCSDIR%%/img126.png -%%PORTDOCS%%%%DOCSDIR%%/img127.png -%%PORTDOCS%%%%DOCSDIR%%/img128.png -%%PORTDOCS%%%%DOCSDIR%%/img129.png -%%PORTDOCS%%%%DOCSDIR%%/img13.png -%%PORTDOCS%%%%DOCSDIR%%/img14.png -%%PORTDOCS%%%%DOCSDIR%%/img15.png -%%PORTDOCS%%%%DOCSDIR%%/img16.png -%%PORTDOCS%%%%DOCSDIR%%/img17.png -%%PORTDOCS%%%%DOCSDIR%%/img18.png -%%PORTDOCS%%%%DOCSDIR%%/img19.png -%%PORTDOCS%%%%DOCSDIR%%/img2.png -%%PORTDOCS%%%%DOCSDIR%%/img20.png -%%PORTDOCS%%%%DOCSDIR%%/img21.png -%%PORTDOCS%%%%DOCSDIR%%/img22.png -%%PORTDOCS%%%%DOCSDIR%%/img23.png -%%PORTDOCS%%%%DOCSDIR%%/img24.png -%%PORTDOCS%%%%DOCSDIR%%/img25.png -%%PORTDOCS%%%%DOCSDIR%%/img26.png -%%PORTDOCS%%%%DOCSDIR%%/img27.png -%%PORTDOCS%%%%DOCSDIR%%/img28.png -%%PORTDOCS%%%%DOCSDIR%%/img29.png -%%PORTDOCS%%%%DOCSDIR%%/img3.png -%%PORTDOCS%%%%DOCSDIR%%/img30.png -%%PORTDOCS%%%%DOCSDIR%%/img31.png -%%PORTDOCS%%%%DOCSDIR%%/img32.png -%%PORTDOCS%%%%DOCSDIR%%/img33.png -%%PORTDOCS%%%%DOCSDIR%%/img34.png -%%PORTDOCS%%%%DOCSDIR%%/img35.png -%%PORTDOCS%%%%DOCSDIR%%/img36.png -%%PORTDOCS%%%%DOCSDIR%%/img37.png -%%PORTDOCS%%%%DOCSDIR%%/img38.png -%%PORTDOCS%%%%DOCSDIR%%/img39.png -%%PORTDOCS%%%%DOCSDIR%%/img4.png -%%PORTDOCS%%%%DOCSDIR%%/img40.png -%%PORTDOCS%%%%DOCSDIR%%/img41.png -%%PORTDOCS%%%%DOCSDIR%%/img42.png -%%PORTDOCS%%%%DOCSDIR%%/img43.png -%%PORTDOCS%%%%DOCSDIR%%/img44.png -%%PORTDOCS%%%%DOCSDIR%%/img45.png -%%PORTDOCS%%%%DOCSDIR%%/img46.png -%%PORTDOCS%%%%DOCSDIR%%/img47.png -%%PORTDOCS%%%%DOCSDIR%%/img48.png -%%PORTDOCS%%%%DOCSDIR%%/img49.png -%%PORTDOCS%%%%DOCSDIR%%/img5.png -%%PORTDOCS%%%%DOCSDIR%%/img50.png -%%PORTDOCS%%%%DOCSDIR%%/img51.png -%%PORTDOCS%%%%DOCSDIR%%/img52.png -%%PORTDOCS%%%%DOCSDIR%%/img53.png -%%PORTDOCS%%%%DOCSDIR%%/img54.png -%%PORTDOCS%%%%DOCSDIR%%/img55.png -%%PORTDOCS%%%%DOCSDIR%%/img56.png -%%PORTDOCS%%%%DOCSDIR%%/img57.png -%%PORTDOCS%%%%DOCSDIR%%/img58.png -%%PORTDOCS%%%%DOCSDIR%%/img59.png -%%PORTDOCS%%%%DOCSDIR%%/img6.png -%%PORTDOCS%%%%DOCSDIR%%/img60.png -%%PORTDOCS%%%%DOCSDIR%%/img61.png -%%PORTDOCS%%%%DOCSDIR%%/img62.png -%%PORTDOCS%%%%DOCSDIR%%/img63.png -%%PORTDOCS%%%%DOCSDIR%%/img64.png -%%PORTDOCS%%%%DOCSDIR%%/img65.png -%%PORTDOCS%%%%DOCSDIR%%/img66.png -%%PORTDOCS%%%%DOCSDIR%%/img67.png -%%PORTDOCS%%%%DOCSDIR%%/img68.png -%%PORTDOCS%%%%DOCSDIR%%/img69.png -%%PORTDOCS%%%%DOCSDIR%%/img7.png -%%PORTDOCS%%%%DOCSDIR%%/img70.png -%%PORTDOCS%%%%DOCSDIR%%/img71.png -%%PORTDOCS%%%%DOCSDIR%%/img72.png -%%PORTDOCS%%%%DOCSDIR%%/img73.png -%%PORTDOCS%%%%DOCSDIR%%/img74.png -%%PORTDOCS%%%%DOCSDIR%%/img75.png -%%PORTDOCS%%%%DOCSDIR%%/img76.png -%%PORTDOCS%%%%DOCSDIR%%/img77.png -%%PORTDOCS%%%%DOCSDIR%%/img78.png -%%PORTDOCS%%%%DOCSDIR%%/img79.png -%%PORTDOCS%%%%DOCSDIR%%/img8.png -%%PORTDOCS%%%%DOCSDIR%%/img80.png -%%PORTDOCS%%%%DOCSDIR%%/img81.png -%%PORTDOCS%%%%DOCSDIR%%/img82.png -%%PORTDOCS%%%%DOCSDIR%%/img83.png -%%PORTDOCS%%%%DOCSDIR%%/img84.png -%%PORTDOCS%%%%DOCSDIR%%/img85.png -%%PORTDOCS%%%%DOCSDIR%%/img86.png -%%PORTDOCS%%%%DOCSDIR%%/img87.png -%%PORTDOCS%%%%DOCSDIR%%/img88.png -%%PORTDOCS%%%%DOCSDIR%%/img89.png -%%PORTDOCS%%%%DOCSDIR%%/img9.png -%%PORTDOCS%%%%DOCSDIR%%/img90.png -%%PORTDOCS%%%%DOCSDIR%%/img91.png -%%PORTDOCS%%%%DOCSDIR%%/img92.png -%%PORTDOCS%%%%DOCSDIR%%/img93.png -%%PORTDOCS%%%%DOCSDIR%%/img94.png -%%PORTDOCS%%%%DOCSDIR%%/img95.png -%%PORTDOCS%%%%DOCSDIR%%/img96.png -%%PORTDOCS%%%%DOCSDIR%%/img97.png -%%PORTDOCS%%%%DOCSDIR%%/img98.png -%%PORTDOCS%%%%DOCSDIR%%/img99.png -%%PORTDOCS%%%%DOCSDIR%%/index.html -%%PORTDOCS%%%%DOCSDIR%%/interplin1_1.png -%%PORTDOCS%%%%DOCSDIR%%/interplin1_2.png -%%PORTDOCS%%%%DOCSDIR%%/legend1.png -%%PORTDOCS%%%%DOCSDIR%%/log10plot.png -%%PORTDOCS%%%%DOCSDIR%%/log2plot.png -%%PORTDOCS%%%%DOCSDIR%%/logplot.png -%%PORTDOCS%%%%DOCSDIR%%/main.css -%%PORTDOCS%%%%DOCSDIR%%/main.html -%%PORTDOCS%%%%DOCSDIR%%/next.png -%%PORTDOCS%%%%DOCSDIR%%/next_g.png -%%PORTDOCS%%%%DOCSDIR%%/node1.html -%%PORTDOCS%%%%DOCSDIR%%/node10.html -%%PORTDOCS%%%%DOCSDIR%%/node100.html -%%PORTDOCS%%%%DOCSDIR%%/node101.html -%%PORTDOCS%%%%DOCSDIR%%/node102.html -%%PORTDOCS%%%%DOCSDIR%%/node103.html -%%PORTDOCS%%%%DOCSDIR%%/node104.html -%%PORTDOCS%%%%DOCSDIR%%/node105.html -%%PORTDOCS%%%%DOCSDIR%%/node106.html -%%PORTDOCS%%%%DOCSDIR%%/node107.html -%%PORTDOCS%%%%DOCSDIR%%/node108.html -%%PORTDOCS%%%%DOCSDIR%%/node109.html -%%PORTDOCS%%%%DOCSDIR%%/node11.html -%%PORTDOCS%%%%DOCSDIR%%/node110.html -%%PORTDOCS%%%%DOCSDIR%%/node111.html -%%PORTDOCS%%%%DOCSDIR%%/node112.html -%%PORTDOCS%%%%DOCSDIR%%/node113.html -%%PORTDOCS%%%%DOCSDIR%%/node114.html -%%PORTDOCS%%%%DOCSDIR%%/node115.html -%%PORTDOCS%%%%DOCSDIR%%/node116.html -%%PORTDOCS%%%%DOCSDIR%%/node117.html -%%PORTDOCS%%%%DOCSDIR%%/node118.html -%%PORTDOCS%%%%DOCSDIR%%/node119.html -%%PORTDOCS%%%%DOCSDIR%%/node12.html -%%PORTDOCS%%%%DOCSDIR%%/node120.html -%%PORTDOCS%%%%DOCSDIR%%/node121.html -%%PORTDOCS%%%%DOCSDIR%%/node122.html -%%PORTDOCS%%%%DOCSDIR%%/node123.html -%%PORTDOCS%%%%DOCSDIR%%/node124.html -%%PORTDOCS%%%%DOCSDIR%%/node125.html -%%PORTDOCS%%%%DOCSDIR%%/node126.html -%%PORTDOCS%%%%DOCSDIR%%/node127.html -%%PORTDOCS%%%%DOCSDIR%%/node128.html -%%PORTDOCS%%%%DOCSDIR%%/node129.html -%%PORTDOCS%%%%DOCSDIR%%/node13.html -%%PORTDOCS%%%%DOCSDIR%%/node130.html -%%PORTDOCS%%%%DOCSDIR%%/node131.html -%%PORTDOCS%%%%DOCSDIR%%/node132.html -%%PORTDOCS%%%%DOCSDIR%%/node133.html -%%PORTDOCS%%%%DOCSDIR%%/node134.html -%%PORTDOCS%%%%DOCSDIR%%/node135.html -%%PORTDOCS%%%%DOCSDIR%%/node136.html -%%PORTDOCS%%%%DOCSDIR%%/node137.html -%%PORTDOCS%%%%DOCSDIR%%/node138.html -%%PORTDOCS%%%%DOCSDIR%%/node139.html -%%PORTDOCS%%%%DOCSDIR%%/node14.html -%%PORTDOCS%%%%DOCSDIR%%/node140.html -%%PORTDOCS%%%%DOCSDIR%%/node141.html -%%PORTDOCS%%%%DOCSDIR%%/node142.html -%%PORTDOCS%%%%DOCSDIR%%/node143.html -%%PORTDOCS%%%%DOCSDIR%%/node144.html -%%PORTDOCS%%%%DOCSDIR%%/node145.html -%%PORTDOCS%%%%DOCSDIR%%/node146.html -%%PORTDOCS%%%%DOCSDIR%%/node147.html -%%PORTDOCS%%%%DOCSDIR%%/node148.html -%%PORTDOCS%%%%DOCSDIR%%/node149.html -%%PORTDOCS%%%%DOCSDIR%%/node15.html -%%PORTDOCS%%%%DOCSDIR%%/node150.html -%%PORTDOCS%%%%DOCSDIR%%/node151.html -%%PORTDOCS%%%%DOCSDIR%%/node152.html -%%PORTDOCS%%%%DOCSDIR%%/node153.html -%%PORTDOCS%%%%DOCSDIR%%/node154.html -%%PORTDOCS%%%%DOCSDIR%%/node155.html -%%PORTDOCS%%%%DOCSDIR%%/node156.html -%%PORTDOCS%%%%DOCSDIR%%/node157.html -%%PORTDOCS%%%%DOCSDIR%%/node158.html -%%PORTDOCS%%%%DOCSDIR%%/node159.html -%%PORTDOCS%%%%DOCSDIR%%/node16.html -%%PORTDOCS%%%%DOCSDIR%%/node160.html -%%PORTDOCS%%%%DOCSDIR%%/node161.html -%%PORTDOCS%%%%DOCSDIR%%/node162.html -%%PORTDOCS%%%%DOCSDIR%%/node163.html -%%PORTDOCS%%%%DOCSDIR%%/node164.html -%%PORTDOCS%%%%DOCSDIR%%/node165.html -%%PORTDOCS%%%%DOCSDIR%%/node166.html -%%PORTDOCS%%%%DOCSDIR%%/node167.html -%%PORTDOCS%%%%DOCSDIR%%/node168.html -%%PORTDOCS%%%%DOCSDIR%%/node169.html -%%PORTDOCS%%%%DOCSDIR%%/node17.html -%%PORTDOCS%%%%DOCSDIR%%/node170.html -%%PORTDOCS%%%%DOCSDIR%%/node171.html -%%PORTDOCS%%%%DOCSDIR%%/node172.html -%%PORTDOCS%%%%DOCSDIR%%/node173.html -%%PORTDOCS%%%%DOCSDIR%%/node174.html -%%PORTDOCS%%%%DOCSDIR%%/node175.html -%%PORTDOCS%%%%DOCSDIR%%/node176.html -%%PORTDOCS%%%%DOCSDIR%%/node177.html -%%PORTDOCS%%%%DOCSDIR%%/node178.html -%%PORTDOCS%%%%DOCSDIR%%/node179.html -%%PORTDOCS%%%%DOCSDIR%%/node18.html -%%PORTDOCS%%%%DOCSDIR%%/node180.html -%%PORTDOCS%%%%DOCSDIR%%/node181.html -%%PORTDOCS%%%%DOCSDIR%%/node182.html -%%PORTDOCS%%%%DOCSDIR%%/node183.html -%%PORTDOCS%%%%DOCSDIR%%/node184.html -%%PORTDOCS%%%%DOCSDIR%%/node185.html -%%PORTDOCS%%%%DOCSDIR%%/node186.html -%%PORTDOCS%%%%DOCSDIR%%/node187.html -%%PORTDOCS%%%%DOCSDIR%%/node188.html -%%PORTDOCS%%%%DOCSDIR%%/node189.html -%%PORTDOCS%%%%DOCSDIR%%/node19.html -%%PORTDOCS%%%%DOCSDIR%%/node190.html -%%PORTDOCS%%%%DOCSDIR%%/node191.html -%%PORTDOCS%%%%DOCSDIR%%/node192.html -%%PORTDOCS%%%%DOCSDIR%%/node193.html -%%PORTDOCS%%%%DOCSDIR%%/node194.html -%%PORTDOCS%%%%DOCSDIR%%/node195.html -%%PORTDOCS%%%%DOCSDIR%%/node196.html -%%PORTDOCS%%%%DOCSDIR%%/node197.html -%%PORTDOCS%%%%DOCSDIR%%/node198.html -%%PORTDOCS%%%%DOCSDIR%%/node199.html -%%PORTDOCS%%%%DOCSDIR%%/node2.html -%%PORTDOCS%%%%DOCSDIR%%/node20.html -%%PORTDOCS%%%%DOCSDIR%%/node200.html -%%PORTDOCS%%%%DOCSDIR%%/node201.html -%%PORTDOCS%%%%DOCSDIR%%/node202.html -%%PORTDOCS%%%%DOCSDIR%%/node203.html -%%PORTDOCS%%%%DOCSDIR%%/node204.html -%%PORTDOCS%%%%DOCSDIR%%/node205.html -%%PORTDOCS%%%%DOCSDIR%%/node206.html -%%PORTDOCS%%%%DOCSDIR%%/node207.html -%%PORTDOCS%%%%DOCSDIR%%/node208.html -%%PORTDOCS%%%%DOCSDIR%%/node209.html -%%PORTDOCS%%%%DOCSDIR%%/node21.html -%%PORTDOCS%%%%DOCSDIR%%/node210.html -%%PORTDOCS%%%%DOCSDIR%%/node211.html -%%PORTDOCS%%%%DOCSDIR%%/node212.html -%%PORTDOCS%%%%DOCSDIR%%/node213.html -%%PORTDOCS%%%%DOCSDIR%%/node214.html -%%PORTDOCS%%%%DOCSDIR%%/node215.html -%%PORTDOCS%%%%DOCSDIR%%/node216.html -%%PORTDOCS%%%%DOCSDIR%%/node217.html -%%PORTDOCS%%%%DOCSDIR%%/node218.html -%%PORTDOCS%%%%DOCSDIR%%/node219.html -%%PORTDOCS%%%%DOCSDIR%%/node22.html -%%PORTDOCS%%%%DOCSDIR%%/node220.html -%%PORTDOCS%%%%DOCSDIR%%/node221.html -%%PORTDOCS%%%%DOCSDIR%%/node222.html -%%PORTDOCS%%%%DOCSDIR%%/node223.html -%%PORTDOCS%%%%DOCSDIR%%/node224.html -%%PORTDOCS%%%%DOCSDIR%%/node225.html -%%PORTDOCS%%%%DOCSDIR%%/node226.html -%%PORTDOCS%%%%DOCSDIR%%/node227.html -%%PORTDOCS%%%%DOCSDIR%%/node228.html -%%PORTDOCS%%%%DOCSDIR%%/node229.html -%%PORTDOCS%%%%DOCSDIR%%/node23.html -%%PORTDOCS%%%%DOCSDIR%%/node230.html -%%PORTDOCS%%%%DOCSDIR%%/node231.html -%%PORTDOCS%%%%DOCSDIR%%/node232.html -%%PORTDOCS%%%%DOCSDIR%%/node233.html -%%PORTDOCS%%%%DOCSDIR%%/node234.html -%%PORTDOCS%%%%DOCSDIR%%/node235.html -%%PORTDOCS%%%%DOCSDIR%%/node236.html -%%PORTDOCS%%%%DOCSDIR%%/node237.html -%%PORTDOCS%%%%DOCSDIR%%/node238.html -%%PORTDOCS%%%%DOCSDIR%%/node239.html -%%PORTDOCS%%%%DOCSDIR%%/node24.html -%%PORTDOCS%%%%DOCSDIR%%/node240.html -%%PORTDOCS%%%%DOCSDIR%%/node241.html -%%PORTDOCS%%%%DOCSDIR%%/node242.html -%%PORTDOCS%%%%DOCSDIR%%/node243.html -%%PORTDOCS%%%%DOCSDIR%%/node244.html -%%PORTDOCS%%%%DOCSDIR%%/node245.html -%%PORTDOCS%%%%DOCSDIR%%/node246.html -%%PORTDOCS%%%%DOCSDIR%%/node247.html -%%PORTDOCS%%%%DOCSDIR%%/node248.html -%%PORTDOCS%%%%DOCSDIR%%/node249.html -%%PORTDOCS%%%%DOCSDIR%%/node25.html -%%PORTDOCS%%%%DOCSDIR%%/node250.html -%%PORTDOCS%%%%DOCSDIR%%/node251.html -%%PORTDOCS%%%%DOCSDIR%%/node252.html -%%PORTDOCS%%%%DOCSDIR%%/node253.html -%%PORTDOCS%%%%DOCSDIR%%/node254.html -%%PORTDOCS%%%%DOCSDIR%%/node255.html -%%PORTDOCS%%%%DOCSDIR%%/node256.html -%%PORTDOCS%%%%DOCSDIR%%/node257.html -%%PORTDOCS%%%%DOCSDIR%%/node258.html -%%PORTDOCS%%%%DOCSDIR%%/node259.html -%%PORTDOCS%%%%DOCSDIR%%/node26.html -%%PORTDOCS%%%%DOCSDIR%%/node260.html -%%PORTDOCS%%%%DOCSDIR%%/node261.html -%%PORTDOCS%%%%DOCSDIR%%/node262.html -%%PORTDOCS%%%%DOCSDIR%%/node263.html -%%PORTDOCS%%%%DOCSDIR%%/node264.html -%%PORTDOCS%%%%DOCSDIR%%/node265.html -%%PORTDOCS%%%%DOCSDIR%%/node266.html -%%PORTDOCS%%%%DOCSDIR%%/node267.html -%%PORTDOCS%%%%DOCSDIR%%/node268.html -%%PORTDOCS%%%%DOCSDIR%%/node269.html -%%PORTDOCS%%%%DOCSDIR%%/node27.html -%%PORTDOCS%%%%DOCSDIR%%/node270.html -%%PORTDOCS%%%%DOCSDIR%%/node271.html -%%PORTDOCS%%%%DOCSDIR%%/node272.html -%%PORTDOCS%%%%DOCSDIR%%/node273.html -%%PORTDOCS%%%%DOCSDIR%%/node274.html -%%PORTDOCS%%%%DOCSDIR%%/node275.html -%%PORTDOCS%%%%DOCSDIR%%/node276.html -%%PORTDOCS%%%%DOCSDIR%%/node277.html -%%PORTDOCS%%%%DOCSDIR%%/node278.html -%%PORTDOCS%%%%DOCSDIR%%/node279.html -%%PORTDOCS%%%%DOCSDIR%%/node28.html -%%PORTDOCS%%%%DOCSDIR%%/node280.html -%%PORTDOCS%%%%DOCSDIR%%/node281.html -%%PORTDOCS%%%%DOCSDIR%%/node282.html -%%PORTDOCS%%%%DOCSDIR%%/node283.html -%%PORTDOCS%%%%DOCSDIR%%/node284.html -%%PORTDOCS%%%%DOCSDIR%%/node285.html -%%PORTDOCS%%%%DOCSDIR%%/node286.html -%%PORTDOCS%%%%DOCSDIR%%/node287.html -%%PORTDOCS%%%%DOCSDIR%%/node29.html -%%PORTDOCS%%%%DOCSDIR%%/node3.html -%%PORTDOCS%%%%DOCSDIR%%/node30.html -%%PORTDOCS%%%%DOCSDIR%%/node31.html -%%PORTDOCS%%%%DOCSDIR%%/node32.html -%%PORTDOCS%%%%DOCSDIR%%/node33.html -%%PORTDOCS%%%%DOCSDIR%%/node34.html -%%PORTDOCS%%%%DOCSDIR%%/node35.html -%%PORTDOCS%%%%DOCSDIR%%/node36.html -%%PORTDOCS%%%%DOCSDIR%%/node37.html -%%PORTDOCS%%%%DOCSDIR%%/node38.html -%%PORTDOCS%%%%DOCSDIR%%/node39.html -%%PORTDOCS%%%%DOCSDIR%%/node4.html -%%PORTDOCS%%%%DOCSDIR%%/node40.html -%%PORTDOCS%%%%DOCSDIR%%/node41.html -%%PORTDOCS%%%%DOCSDIR%%/node42.html -%%PORTDOCS%%%%DOCSDIR%%/node43.html -%%PORTDOCS%%%%DOCSDIR%%/node44.html -%%PORTDOCS%%%%DOCSDIR%%/node45.html -%%PORTDOCS%%%%DOCSDIR%%/node46.html -%%PORTDOCS%%%%DOCSDIR%%/node47.html -%%PORTDOCS%%%%DOCSDIR%%/node48.html -%%PORTDOCS%%%%DOCSDIR%%/node49.html -%%PORTDOCS%%%%DOCSDIR%%/node5.html -%%PORTDOCS%%%%DOCSDIR%%/node50.html -%%PORTDOCS%%%%DOCSDIR%%/node51.html -%%PORTDOCS%%%%DOCSDIR%%/node52.html -%%PORTDOCS%%%%DOCSDIR%%/node53.html -%%PORTDOCS%%%%DOCSDIR%%/node54.html -%%PORTDOCS%%%%DOCSDIR%%/node55.html -%%PORTDOCS%%%%DOCSDIR%%/node56.html -%%PORTDOCS%%%%DOCSDIR%%/node57.html -%%PORTDOCS%%%%DOCSDIR%%/node58.html -%%PORTDOCS%%%%DOCSDIR%%/node59.html -%%PORTDOCS%%%%DOCSDIR%%/node6.html -%%PORTDOCS%%%%DOCSDIR%%/node60.html -%%PORTDOCS%%%%DOCSDIR%%/node61.html -%%PORTDOCS%%%%DOCSDIR%%/node62.html -%%PORTDOCS%%%%DOCSDIR%%/node63.html -%%PORTDOCS%%%%DOCSDIR%%/node64.html -%%PORTDOCS%%%%DOCSDIR%%/node65.html -%%PORTDOCS%%%%DOCSDIR%%/node66.html -%%PORTDOCS%%%%DOCSDIR%%/node67.html -%%PORTDOCS%%%%DOCSDIR%%/node68.html -%%PORTDOCS%%%%DOCSDIR%%/node69.html -%%PORTDOCS%%%%DOCSDIR%%/node7.html -%%PORTDOCS%%%%DOCSDIR%%/node70.html -%%PORTDOCS%%%%DOCSDIR%%/node71.html -%%PORTDOCS%%%%DOCSDIR%%/node72.html -%%PORTDOCS%%%%DOCSDIR%%/node73.html -%%PORTDOCS%%%%DOCSDIR%%/node74.html -%%PORTDOCS%%%%DOCSDIR%%/node75.html -%%PORTDOCS%%%%DOCSDIR%%/node76.html -%%PORTDOCS%%%%DOCSDIR%%/node77.html -%%PORTDOCS%%%%DOCSDIR%%/node78.html -%%PORTDOCS%%%%DOCSDIR%%/node79.html -%%PORTDOCS%%%%DOCSDIR%%/node8.html -%%PORTDOCS%%%%DOCSDIR%%/node80.html -%%PORTDOCS%%%%DOCSDIR%%/node81.html -%%PORTDOCS%%%%DOCSDIR%%/node82.html -%%PORTDOCS%%%%DOCSDIR%%/node83.html -%%PORTDOCS%%%%DOCSDIR%%/node84.html -%%PORTDOCS%%%%DOCSDIR%%/node85.html -%%PORTDOCS%%%%DOCSDIR%%/node86.html -%%PORTDOCS%%%%DOCSDIR%%/node87.html -%%PORTDOCS%%%%DOCSDIR%%/node88.html -%%PORTDOCS%%%%DOCSDIR%%/node89.html -%%PORTDOCS%%%%DOCSDIR%%/node9.html -%%PORTDOCS%%%%DOCSDIR%%/node90.html -%%PORTDOCS%%%%DOCSDIR%%/node91.html -%%PORTDOCS%%%%DOCSDIR%%/node92.html -%%PORTDOCS%%%%DOCSDIR%%/node93.html -%%PORTDOCS%%%%DOCSDIR%%/node94.html -%%PORTDOCS%%%%DOCSDIR%%/node95.html -%%PORTDOCS%%%%DOCSDIR%%/node96.html -%%PORTDOCS%%%%DOCSDIR%%/node97.html -%%PORTDOCS%%%%DOCSDIR%%/node98.html -%%PORTDOCS%%%%DOCSDIR%%/node99.html -%%PORTDOCS%%%%DOCSDIR%%/nx_grp_g.png -%%PORTDOCS%%%%DOCSDIR%%/plot1.png -%%PORTDOCS%%%%DOCSDIR%%/plot2.png -%%PORTDOCS%%%%DOCSDIR%%/plot3.png -%%PORTDOCS%%%%DOCSDIR%%/plot4.png -%%PORTDOCS%%%%DOCSDIR%%/plot5.png -%%PORTDOCS%%%%DOCSDIR%%/polyfit1.png -%%PORTDOCS%%%%DOCSDIR%%/polyfit2.png -%%PORTDOCS%%%%DOCSDIR%%/polyfit3.png -%%PORTDOCS%%%%DOCSDIR%%/polyval1.png -%%PORTDOCS%%%%DOCSDIR%%/prev.png -%%PORTDOCS%%%%DOCSDIR%%/prev_g.png -%%PORTDOCS%%%%DOCSDIR%%/printimg1.png -%%PORTDOCS%%%%DOCSDIR%%/printplt.png -%%PORTDOCS%%%%DOCSDIR%%/psi1.png -%%PORTDOCS%%%%DOCSDIR%%/secplot.png -%%PORTDOCS%%%%DOCSDIR%%/sinplot.png -%%PORTDOCS%%%%DOCSDIR%%/spy1.png -%%PORTDOCS%%%%DOCSDIR%%/spy2.png -%%PORTDOCS%%%%DOCSDIR%%/tanplot.png -%%PORTDOCS%%%%DOCSDIR%%/title1.png -%%PORTDOCS%%%%DOCSDIR%%/up.png -%%PORTDOCS%%%%DOCSDIR%%/up_g.png -%%PORTDOCS%%%%DOCSDIR%%/winlev1.png -%%PORTDOCS%%%%DOCSDIR%%/winlev2.png -%%PORTDOCS%%%%DOCSDIR%%/xlabel1.png -%%PORTDOCS%%%%DOCSDIR%%/xlim1.png -%%PORTDOCS%%%%DOCSDIR%%/xlim2.png -%%PORTDOCS%%%%DOCSDIR%%/ylabel1.png -%%PORTDOCS%%%%DOCSDIR%%/ylim1.png -%%PORTDOCS%%%%DOCSDIR%%/ylim2.png -%%PORTDOCS%%%%DOCSDIR%%/zoom1.png -%%PORTDOCS%%%%DOCSDIR%%/zoom3.png -%%PORTDOCS%%%%DOCSDIR%%/zoom4.png -%%PORTDOCS%%%%DOCSDIR%%/zoom5.png -%%PORTDOCS%%%%DOCSDIR%%/zoom6.png -%%PORTDOCS%%@dirrm %%DOCSDIR%% -@dirrm %%DATADIR%%/MFiles +%%DATADIR%%/help/html/acos_eqn1.png +%%DATADIR%%/help/html/acos_eqn2.png +%%DATADIR%%/help/html/acosh_eqn1.png +%%DATADIR%%/help/html/acoshplot.jpg +%%DATADIR%%/help/html/acoshplot.png +%%DATADIR%%/help/html/acosplot.jpg +%%DATADIR%%/help/html/acosplot.png +%%DATADIR%%/help/html/acot_eqn1.png +%%DATADIR%%/help/html/acoth_eqn1.png +%%DATADIR%%/help/html/acothplot.jpg +%%DATADIR%%/help/html/acothplot.png +%%DATADIR%%/help/html/acotplot.jpg +%%DATADIR%%/help/html/acotplot.png +%%DATADIR%%/help/html/acsc_eqn1.png +%%DATADIR%%/help/html/acsch_eqn1.png +%%DATADIR%%/help/html/acschplot.jpg +%%DATADIR%%/help/html/acschplot.png +%%DATADIR%%/help/html/acscplot.jpg +%%DATADIR%%/help/html/acscplot.png +%%DATADIR%%/help/html/all_eqn1.png +%%DATADIR%%/help/html/angle_eqn1.png +%%DATADIR%%/help/html/angle_eqn2.png +%%DATADIR%%/help/html/any_eqn1.png +%%DATADIR%%/help/html/array_bin2dec.html +%%DATADIR%%/help/html/array_bin2int.html +%%DATADIR%%/help/html/array_cast.html +%%DATADIR%%/help/html/array_cell.html +%%DATADIR%%/help/html/array_char.html +%%DATADIR%%/help/html/array_circshift.html +%%DATADIR%%/help/html/array_cond.html +%%DATADIR%%/help/html/array_dec2bin.html +%%DATADIR%%/help/html/array_det.html +%%DATADIR%%/help/html/array_diag.html +%%DATADIR%%/help/html/array_expm.html +%%DATADIR%%/help/html/array_eye.html +%%DATADIR%%/help/html/array_find.html +%%DATADIR%%/help/html/array_flipdim.html +%%DATADIR%%/help/html/array_fliplr.html +%%DATADIR%%/help/html/array_flipud.html +%%DATADIR%%/help/html/array_int2bin.html +%%DATADIR%%/help/html/array_iscell.html +%%DATADIR%%/help/html/array_iscellstr.html +%%DATADIR%%/help/html/array_ischar.html +%%DATADIR%%/help/html/array_islogical.html +%%DATADIR%%/help/html/array_isnumeric.html +%%DATADIR%%/help/html/array_isreal.html +%%DATADIR%%/help/html/array_isscalar.html +%%DATADIR%%/help/html/array_isstr.html +%%DATADIR%%/help/html/array_isstruct.html +%%DATADIR%%/help/html/array_length.html +%%DATADIR%%/help/html/array_linspace.html +%%DATADIR%%/help/html/array_ndgrid.html +%%DATADIR%%/help/html/array_ndims.html +%%DATADIR%%/help/html/array_nonzeros.html +%%DATADIR%%/help/html/array_norm.html +%%DATADIR%%/help/html/array_numel.html +%%DATADIR%%/help/html/array_ones.html +%%DATADIR%%/help/html/array_pinv.html +%%DATADIR%%/help/html/array_rank.html +%%DATADIR%%/help/html/array_rcond.html +%%DATADIR%%/help/html/array_repmat.html +%%DATADIR%%/help/html/array_reshape.html +%%DATADIR%%/help/html/array_sort.html +%%DATADIR%%/help/html/array_squeeze.html +%%DATADIR%%/help/html/array_transpose.html +%%DATADIR%%/help/html/array_unique.html +%%DATADIR%%/help/html/array_xnrm2.html +%%DATADIR%%/help/html/array_zeros.html +%%DATADIR%%/help/html/asec_eqn1.png +%%DATADIR%%/help/html/asech_eqn1.png +%%DATADIR%%/help/html/asechplot.jpg +%%DATADIR%%/help/html/asechplot.png +%%DATADIR%%/help/html/asecplot.jpg +%%DATADIR%%/help/html/asecplot.png +%%DATADIR%%/help/html/asin_eqn1.png +%%DATADIR%%/help/html/asin_eqn2.png +%%DATADIR%%/help/html/asinh_eqn1.png +%%DATADIR%%/help/html/asinhplot.jpg +%%DATADIR%%/help/html/asinhplot.png +%%DATADIR%%/help/html/asinplot.jpg +%%DATADIR%%/help/html/asinplot.png +%%DATADIR%%/help/html/atan2_eqn1.png +%%DATADIR%%/help/html/atan2_eqn2.png +%%DATADIR%%/help/html/atan2plot.jpg +%%DATADIR%%/help/html/atan2plot.png +%%DATADIR%%/help/html/atan_eqn1.png +%%DATADIR%%/help/html/atan_eqn2.png +%%DATADIR%%/help/html/atanh_eqn1.png +%%DATADIR%%/help/html/atanhplot.jpg +%%DATADIR%%/help/html/atanhplot.png +%%DATADIR%%/help/html/atanplot.jpg +%%DATADIR%%/help/html/atanplot.png +%%DATADIR%%/help/html/betapdf.jpg +%%DATADIR%%/help/html/betapdf.png +%%DATADIR%%/help/html/binary_bitand.html +%%DATADIR%%/help/html/binary_bitcmp.html +%%DATADIR%%/help/html/binary_bitor.html +%%DATADIR%%/help/html/binary_bitxor.html +%%DATADIR%%/help/html/chipdf.jpg +%%DATADIR%%/help/html/chipdf.png +%%DATADIR%%/help/html/class_and.html +%%DATADIR%%/help/html/class_class.html +%%DATADIR%%/help/html/class_colon.html +%%DATADIR%%/help/html/class_constructors.html +%%DATADIR%%/help/html/class_ctranspose.html +%%DATADIR%%/help/html/class_eq.html +%%DATADIR%%/help/html/class_ge.html +%%DATADIR%%/help/html/class_gt.html +%%DATADIR%%/help/html/class_horzcat.html +%%DATADIR%%/help/html/class_ldivide.html +%%DATADIR%%/help/html/class_le.html +%%DATADIR%%/help/html/class_lt.html +%%DATADIR%%/help/html/class_minus.html +%%DATADIR%%/help/html/class_mldivide.html +%%DATADIR%%/help/html/class_mpower.html +%%DATADIR%%/help/html/class_mrdivide.html +%%DATADIR%%/help/html/class_mtimes.html +%%DATADIR%%/help/html/class_ne.html +%%DATADIR%%/help/html/class_not.html +%%DATADIR%%/help/html/class_or.html +%%DATADIR%%/help/html/class_plus.html +%%DATADIR%%/help/html/class_power.html +%%DATADIR%%/help/html/class_rdivide.html +%%DATADIR%%/help/html/class_subsasgn.html +%%DATADIR%%/help/html/class_subsindex.html +%%DATADIR%%/help/html/class_subsref.html +%%DATADIR%%/help/html/class_times.html +%%DATADIR%%/help/html/class_transpose.html +%%DATADIR%%/help/html/class_uminus.html +%%DATADIR%%/help/html/class_uplus.html +%%DATADIR%%/help/html/class_vertcat.html +%%DATADIR%%/help/html/clim1.jpg +%%DATADIR%%/help/html/clim1.png +%%DATADIR%%/help/html/clim2.jpg +%%DATADIR%%/help/html/clim2.png +%%DATADIR%%/help/html/colon_eqn1.png +%%DATADIR%%/help/html/colon_eqn2.png +%%DATADIR%%/help/html/colon_eqn3.png +%%DATADIR%%/help/html/colon_eqn4.png +%%DATADIR%%/help/html/colon_eqn5.png +%%DATADIR%%/help/html/colon_eqn6.png +%%DATADIR%%/help/html/colon_eqn7.png +%%DATADIR%%/help/html/colormap1.jpg +%%DATADIR%%/help/html/colormap1.png +%%DATADIR%%/help/html/colormap2.jpg +%%DATADIR%%/help/html/colormap2.png +%%DATADIR%%/help/html/colormap3.jpg +%%DATADIR%%/help/html/colormap3.png +%%DATADIR%%/help/html/colormap4.jpg +%%DATADIR%%/help/html/colormap4.png +%%DATADIR%%/help/html/colormap5.jpg +%%DATADIR%%/help/html/colormap5.png +%%DATADIR%%/help/html/colormap6.jpg +%%DATADIR%%/help/html/colormap6.png +%%DATADIR%%/help/html/colormap7.jpg +%%DATADIR%%/help/html/colormap7.png +%%DATADIR%%/help/html/colormap_eqn1.png +%%DATADIR%%/help/html/colormap_eqn2.png +%%DATADIR%%/help/html/cond_eqn1.png +%%DATADIR%%/help/html/constants_e.html +%%DATADIR%%/help/html/constants_eps.html +%%DATADIR%%/help/html/constants_feps.html +%%DATADIR%%/help/html/constants_i.html +%%DATADIR%%/help/html/constants_inf.html +%%DATADIR%%/help/html/constants_nan.html +%%DATADIR%%/help/html/constants_pi.html +%%DATADIR%%/help/html/constants_teps.html +%%DATADIR%%/help/html/conv2_eqn1.png +%%DATADIR%%/help/html/copper1.jpg +%%DATADIR%%/help/html/copper1.png +%%DATADIR%%/help/html/cos_eqn1.png +%%DATADIR%%/help/html/cos_eqn2.png +%%DATADIR%%/help/html/cosh_eqn1.png +%%DATADIR%%/help/html/coshplot.jpg +%%DATADIR%%/help/html/coshplot.png +%%DATADIR%%/help/html/cosplot.jpg +%%DATADIR%%/help/html/cosplot.png +%%DATADIR%%/help/html/cot_eqn1.png +%%DATADIR%%/help/html/cot_eqn2.png +%%DATADIR%%/help/html/coth_eqn1.png +%%DATADIR%%/help/html/cothplot.jpg +%%DATADIR%%/help/html/cothplot.png +%%DATADIR%%/help/html/cotplot.jpg +%%DATADIR%%/help/html/cotplot.png +%%DATADIR%%/help/html/csc_eqn1.png +%%DATADIR%%/help/html/csch_eqn1.png +%%DATADIR%%/help/html/cschplot.jpg +%%DATADIR%%/help/html/cschplot.png +%%DATADIR%%/help/html/cscplot.jpg +%%DATADIR%%/help/html/cscplot.png +%%DATADIR%%/help/html/cumsum_eqn1.png +%%DATADIR%%/help/html/curvefit_fitfun.html +%%DATADIR%%/help/html/curvefit_gausfit.html +%%DATADIR%%/help/html/curvefit_interplin1.html +%%DATADIR%%/help/html/curvefit_polyfit.html +%%DATADIR%%/help/html/curvefit_polyval.html +%%DATADIR%%/help/html/dawson1.jpg +%%DATADIR%%/help/html/dawson1.png +%%DATADIR%%/help/html/dawson_eqn1.png +%%DATADIR%%/help/html/debug_dbauto.html +%%DATADIR%%/help/html/debug_dbdelete.html +%%DATADIR%%/help/html/debug_dblist.html +%%DATADIR%%/help/html/debug_dbstep.html +%%DATADIR%%/help/html/debug_dbstop.html +%%DATADIR%%/help/html/det_eqn1.png +%%DATADIR%%/help/html/det_eqn2.png +%%DATADIR%%/help/html/dotleftdivide_eqn1.png +%%DATADIR%%/help/html/dotleftdivide_eqn2.png +%%DATADIR%%/help/html/dotleftdivide_eqn3.png +%%DATADIR%%/help/html/dotpower_eqn1.png +%%DATADIR%%/help/html/dotpower_eqn2.png +%%DATADIR%%/help/html/dotpower_eqn3.png +%%DATADIR%%/help/html/dotrightdivide_eqn1.png +%%DATADIR%%/help/html/dotrightdivide_eqn2.png +%%DATADIR%%/help/html/dotrightdivide_eqn3.png +%%DATADIR%%/help/html/dottimes_eqn1.png +%%DATADIR%%/help/html/dottimes_eqn2.png +%%DATADIR%%/help/html/dottimes_eqn3.png +%%DATADIR%%/help/html/ei1.jpg +%%DATADIR%%/help/html/ei1.png +%%DATADIR%%/help/html/ei_eqn1.png +%%DATADIR%%/help/html/eig_eqn1.png +%%DATADIR%%/help/html/eig_eqn2.png +%%DATADIR%%/help/html/eig_eqn3.png +%%DATADIR%%/help/html/eig_eqn4.png +%%DATADIR%%/help/html/eig_eqn5.png +%%DATADIR%%/help/html/eig_eqn6.png +%%DATADIR%%/help/html/elementary_abs.html +%%DATADIR%%/help/html/elementary_all.html +%%DATADIR%%/help/html/elementary_any.html +%%DATADIR%%/help/html/elementary_ceil.html +%%DATADIR%%/help/html/elementary_conj.html +%%DATADIR%%/help/html/elementary_cumsum.html +%%DATADIR%%/help/html/elementary_deal.html +%%DATADIR%%/help/html/elementary_floor.html +%%DATADIR%%/help/html/elementary_getfield.html +%%DATADIR%%/help/html/elementary_imag.html +%%DATADIR%%/help/html/elementary_max.html +%%DATADIR%%/help/html/elementary_mean.html +%%DATADIR%%/help/html/elementary_min.html +%%DATADIR%%/help/html/elementary_prod.html +%%DATADIR%%/help/html/elementary_real.html +%%DATADIR%%/help/html/elementary_round.html +%%DATADIR%%/help/html/elementary_std.html +%%DATADIR%%/help/html/elementary_sub2ind.html +%%DATADIR%%/help/html/elementary_sum.html +%%DATADIR%%/help/html/elementary_var.html +%%DATADIR%%/help/html/elementary_vec.html +%%DATADIR%%/help/html/eone1.jpg +%%DATADIR%%/help/html/eone1.png +%%DATADIR%%/help/html/eone_eqn1.png +%%DATADIR%%/help/html/erf1.jpg +%%DATADIR%%/help/html/erf1.png +%%DATADIR%%/help/html/erf_eqn1.png +%%DATADIR%%/help/html/erfc1.jpg +%%DATADIR%%/help/html/erfc1.png +%%DATADIR%%/help/html/erfc_eqn1.png +%%DATADIR%%/help/html/erfcx1.jpg +%%DATADIR%%/help/html/erfcx1.png +%%DATADIR%%/help/html/erfcx_eqn1.png +%%DATADIR%%/help/html/exp_eqn1.png +%%DATADIR%%/help/html/exp_eqn2.png +%%DATADIR%%/help/html/exp_eqn3.png +%%DATADIR%%/help/html/expei1.jpg +%%DATADIR%%/help/html/expei1.png +%%DATADIR%%/help/html/expei_eqn1.png +%%DATADIR%%/help/html/expplot1.jpg +%%DATADIR%%/help/html/expplot1.png +%%DATADIR%%/help/html/expplot2.jpg +%%DATADIR%%/help/html/expplot2.png +%%DATADIR%%/help/html/fft1.jpg +%%DATADIR%%/help/html/fft1.png +%%DATADIR%%/help/html/fft2.jpg +%%DATADIR%%/help/html/fft2.png +%%DATADIR%%/help/html/fft_eqn1.png +%%DATADIR%%/help/html/fft_eqn2.png +%%DATADIR%%/help/html/fft_eqn3.png +%%DATADIR%%/help/html/fft_eqn4.png +%%DATADIR%%/help/html/find_eqn1.png +%%DATADIR%%/help/html/fitfun_eqn1.png +%%DATADIR%%/help/html/fitfun_eqn2.png +%%DATADIR%%/help/html/flow_break.html +%%DATADIR%%/help/html/flow_continue.html +%%DATADIR%%/help/html/flow_error.html +%%DATADIR%%/help/html/flow_for.html +%%DATADIR%%/help/html/flow_if.html +%%DATADIR%%/help/html/flow_keyboard.html +%%DATADIR%%/help/html/flow_lasterr.html +%%DATADIR%%/help/html/flow_retall.html +%%DATADIR%%/help/html/flow_return.html +%%DATADIR%%/help/html/flow_switch.html +%%DATADIR%%/help/html/flow_try.html +%%DATADIR%%/help/html/flow_warning.html +%%DATADIR%%/help/html/flow_while.html +%%DATADIR%%/help/html/freemat_addpath.html +%%DATADIR%%/help/html/freemat_assignin.html +%%DATADIR%%/help/html/freemat_builtin.html +%%DATADIR%%/help/html/freemat_clock.html +%%DATADIR%%/help/html/freemat_clocktotime.html +%%DATADIR%%/help/html/freemat_computer.html +%%DATADIR%%/help/html/freemat_editor.html +%%DATADIR%%/help/html/freemat_etime.html +%%DATADIR%%/help/html/freemat_eval.html +%%DATADIR%%/help/html/freemat_evalin.html +%%DATADIR%%/help/html/freemat_exit.html +%%DATADIR%%/help/html/freemat_feval.html +%%DATADIR%%/help/html/freemat_filesep.html +%%DATADIR%%/help/html/freemat_help.html +%%DATADIR%%/help/html/freemat_helpwin.html +%%DATADIR%%/help/html/freemat_import.html +%%DATADIR%%/help/html/freemat_loadlib.html +%%DATADIR%%/help/html/freemat_mfilename.html +%%DATADIR%%/help/html/freemat_path.html +%%DATADIR%%/help/html/freemat_pathsep.html +%%DATADIR%%/help/html/freemat_pathtool.html +%%DATADIR%%/help/html/freemat_pcode.html +%%DATADIR%%/help/html/freemat_quit.html +%%DATADIR%%/help/html/freemat_rehash.html +%%DATADIR%%/help/html/freemat_rescan.html +%%DATADIR%%/help/html/freemat_sleep.html +%%DATADIR%%/help/html/freemat_source.html +%%DATADIR%%/help/html/freemat_tic.html +%%DATADIR%%/help/html/freemat_toc.html +%%DATADIR%%/help/html/functions_function.html +%%DATADIR%%/help/html/functions_keywords.html +%%DATADIR%%/help/html/functions_nargin.html +%%DATADIR%%/help/html/functions_nargout.html +%%DATADIR%%/help/html/functions_script.html +%%DATADIR%%/help/html/functions_special.html +%%DATADIR%%/help/html/functions_varargin.html +%%DATADIR%%/help/html/functions_varargout.html +%%DATADIR%%/help/html/gamma1.jpg +%%DATADIR%%/help/html/gamma1.png +%%DATADIR%%/help/html/gamma_eqn1.png +%%DATADIR%%/help/html/gamma_eqn2.png +%%DATADIR%%/help/html/gammaln1.jpg +%%DATADIR%%/help/html/gammaln1.png +%%DATADIR%%/help/html/gausfit1.jpg +%%DATADIR%%/help/html/gausfit1.png +%%DATADIR%%/help/html/gray1.jpg +%%DATADIR%%/help/html/gray1.png +%%DATADIR%%/help/html/grid1.jpg +%%DATADIR%%/help/html/grid1.png +%%DATADIR%%/help/html/grid2.jpg +%%DATADIR%%/help/html/grid2.png +%%DATADIR%%/help/html/handle_axes.html +%%DATADIR%%/help/html/handle_axis.html +%%DATADIR%%/help/html/handle_axisproperties.html +%%DATADIR%%/help/html/handle_cla.html +%%DATADIR%%/help/html/handle_clf.html +%%DATADIR%%/help/html/handle_clim.html +%%DATADIR%%/help/html/handle_close.html +%%DATADIR%%/help/html/handle_colorbar.html +%%DATADIR%%/help/html/handle_colormap.html +%%DATADIR%%/help/html/handle_colorspec.html +%%DATADIR%%/help/html/handle_copper.html +%%DATADIR%%/help/html/handle_copy.html +%%DATADIR%%/help/html/handle_figure.html +%%DATADIR%%/help/html/handle_figureproperties.html +%%DATADIR%%/help/html/handle_gca.html +%%DATADIR%%/help/html/handle_gcf.html +%%DATADIR%%/help/html/handle_get.html +%%DATADIR%%/help/html/handle_gray.html +%%DATADIR%%/help/html/handle_grid.html +%%DATADIR%%/help/html/handle_himage.html +%%DATADIR%%/help/html/handle_hline.html +%%DATADIR%%/help/html/handle_hold.html +%%DATADIR%%/help/html/handle_hpoint.html +%%DATADIR%%/help/html/handle_hsurface.html +%%DATADIR%%/help/html/handle_htext.html +%%DATADIR%%/help/html/handle_image.html +%%DATADIR%%/help/html/handle_imageproperties.html +%%DATADIR%%/help/html/handle_is2dview.html +%%DATADIR%%/help/html/handle_ishold.html +%%DATADIR%%/help/html/handle_legend.html +%%DATADIR%%/help/html/handle_lineproperties.html +%%DATADIR%%/help/html/handle_loglog.html +%%DATADIR%%/help/html/handle_newplot.html +%%DATADIR%%/help/html/handle_plot.html +%%DATADIR%%/help/html/handle_plot3.html +%%DATADIR%%/help/html/handle_point.html +%%DATADIR%%/help/html/handle_print.html +%%DATADIR%%/help/html/handle_pvalid.html +%%DATADIR%%/help/html/handle_semilogx.html +%%DATADIR%%/help/html/handle_semilogy.html +%%DATADIR%%/help/html/handle_set.html +%%DATADIR%%/help/html/handle_sizefig.html +%%DATADIR%%/help/html/handle_subplot.html +%%DATADIR%%/help/html/handle_surf.html +%%DATADIR%%/help/html/handle_surfaceproperties.html +%%DATADIR%%/help/html/handle_text.html +%%DATADIR%%/help/html/handle_textproperties.html +%%DATADIR%%/help/html/handle_title.html +%%DATADIR%%/help/html/handle_tubeplot.html +%%DATADIR%%/help/html/handle_uicontrol.html +%%DATADIR%%/help/html/handle_uicontrolproperties.html +%%DATADIR%%/help/html/handle_view.html +%%DATADIR%%/help/html/handle_winlev.html +%%DATADIR%%/help/html/handle_xlabel.html +%%DATADIR%%/help/html/handle_xlim.html +%%DATADIR%%/help/html/handle_ylabel.html +%%DATADIR%%/help/html/handle_ylim.html +%%DATADIR%%/help/html/handle_zlabel.html +%%DATADIR%%/help/html/handle_zlim.html +%%DATADIR%%/help/html/handle_zoom.html +%%DATADIR%%/help/html/hermitian_eqn1.png +%%DATADIR%%/help/html/hold1.jpg +%%DATADIR%%/help/html/hold1.png +%%DATADIR%%/help/html/hold2.jpg +%%DATADIR%%/help/html/hold2.png +%%DATADIR%%/help/html/image1.jpg +%%DATADIR%%/help/html/image1.png +%%DATADIR%%/help/html/image2.jpg +%%DATADIR%%/help/html/image2.png +%%DATADIR%%/help/html/index.html +%%DATADIR%%/help/html/inf_eqn1.png +%%DATADIR%%/help/html/inspection_clear.html +%%DATADIR%%/help/html/inspection_exist.html +%%DATADIR%%/help/html/inspection_fieldnames.html +%%DATADIR%%/help/html/inspection_isa.html +%%DATADIR%%/help/html/inspection_isempty.html +%%DATADIR%%/help/html/inspection_isfield.html +%%DATADIR%%/help/html/inspection_ishandle.html +%%DATADIR%%/help/html/inspection_isinf.html +%%DATADIR%%/help/html/inspection_isnan.html +%%DATADIR%%/help/html/inspection_isset.html +%%DATADIR%%/help/html/inspection_issparse.html +%%DATADIR%%/help/html/inspection_size.html +%%DATADIR%%/help/html/inspection_where.html +%%DATADIR%%/help/html/inspection_which.html +%%DATADIR%%/help/html/inspection_who.html +%%DATADIR%%/help/html/interplin1_1.jpg +%%DATADIR%%/help/html/interplin1_1.png +%%DATADIR%%/help/html/interplin1_2.jpg +%%DATADIR%%/help/html/interplin1_2.png +%%DATADIR%%/help/html/introduction_install.html +%%DATADIR%%/help/html/io_csvread.html +%%DATADIR%%/help/html/io_csvwrite.html +%%DATADIR%%/help/html/io_disp.html +%%DATADIR%%/help/html/io_fclose.html +%%DATADIR%%/help/html/io_feof.html +%%DATADIR%%/help/html/io_fgetline.html +%%DATADIR%%/help/html/io_fopen.html +%%DATADIR%%/help/html/io_fprintf.html +%%DATADIR%%/help/html/io_fread.html +%%DATADIR%%/help/html/io_fscanf.html +%%DATADIR%%/help/html/io_fseek.html +%%DATADIR%%/help/html/io_ftell.html +%%DATADIR%%/help/html/io_fwrite.html +%%DATADIR%%/help/html/io_getline.html +%%DATADIR%%/help/html/io_getprintlimit.html +%%DATADIR%%/help/html/io_input.html +%%DATADIR%%/help/html/io_load.html +%%DATADIR%%/help/html/io_printf.html +%%DATADIR%%/help/html/io_rawread.html +%%DATADIR%%/help/html/io_save.html +%%DATADIR%%/help/html/io_setprintlimit.html +%%DATADIR%%/help/html/io_sprintf.html +%%DATADIR%%/help/html/io_sscanf.html +%%DATADIR%%/help/html/io_str2num.html +%%DATADIR%%/help/html/leftdivide_eqn1.png +%%DATADIR%%/help/html/leftdivide_eqn2.png +%%DATADIR%%/help/html/leftdivide_eqn3.png +%%DATADIR%%/help/html/leftdivide_eqn4.png +%%DATADIR%%/help/html/leftdivide_eqn5.png +%%DATADIR%%/help/html/leftdivide_eqn6.png +%%DATADIR%%/help/html/leftdivide_eqn7.png +%%DATADIR%%/help/html/leftdivide_eqn8.png +%%DATADIR%%/help/html/leftdivide_eqn9.png +%%DATADIR%%/help/html/log10plot.jpg +%%DATADIR%%/help/html/log10plot.png +%%DATADIR%%/help/html/log2plot.jpg +%%DATADIR%%/help/html/log2plot.png +%%DATADIR%%/help/html/log_eqn1.png +%%DATADIR%%/help/html/log_eqn2.png +%%DATADIR%%/help/html/loglog1.jpg +%%DATADIR%%/help/html/loglog1.png +%%DATADIR%%/help/html/loglog2.jpg +%%DATADIR%%/help/html/loglog2.png +%%DATADIR%%/help/html/logplot.jpg +%%DATADIR%%/help/html/logplot.png +%%DATADIR%%/help/html/mathfunctions_acos.html +%%DATADIR%%/help/html/mathfunctions_acosd.html +%%DATADIR%%/help/html/mathfunctions_acosh.html +%%DATADIR%%/help/html/mathfunctions_acot.html +%%DATADIR%%/help/html/mathfunctions_acotd.html +%%DATADIR%%/help/html/mathfunctions_acoth.html +%%DATADIR%%/help/html/mathfunctions_acsc.html +%%DATADIR%%/help/html/mathfunctions_acscd.html +%%DATADIR%%/help/html/mathfunctions_acsch.html +%%DATADIR%%/help/html/mathfunctions_angle.html +%%DATADIR%%/help/html/mathfunctions_asec.html +%%DATADIR%%/help/html/mathfunctions_asecd.html +%%DATADIR%%/help/html/mathfunctions_asech.html +%%DATADIR%%/help/html/mathfunctions_asin.html +%%DATADIR%%/help/html/mathfunctions_asind.html +%%DATADIR%%/help/html/mathfunctions_asinh.html +%%DATADIR%%/help/html/mathfunctions_atan.html +%%DATADIR%%/help/html/mathfunctions_atan2.html +%%DATADIR%%/help/html/mathfunctions_atand.html +%%DATADIR%%/help/html/mathfunctions_atanh.html +%%DATADIR%%/help/html/mathfunctions_cos.html +%%DATADIR%%/help/html/mathfunctions_cosd.html +%%DATADIR%%/help/html/mathfunctions_cosh.html +%%DATADIR%%/help/html/mathfunctions_cot.html +%%DATADIR%%/help/html/mathfunctions_cotd.html +%%DATADIR%%/help/html/mathfunctions_coth.html +%%DATADIR%%/help/html/mathfunctions_cross.html +%%DATADIR%%/help/html/mathfunctions_csc.html +%%DATADIR%%/help/html/mathfunctions_cscd.html +%%DATADIR%%/help/html/mathfunctions_csch.html +%%DATADIR%%/help/html/mathfunctions_dawson.html +%%DATADIR%%/help/html/mathfunctions_deg2rad.html +%%DATADIR%%/help/html/mathfunctions_ei.html +%%DATADIR%%/help/html/mathfunctions_eone.html +%%DATADIR%%/help/html/mathfunctions_erf.html +%%DATADIR%%/help/html/mathfunctions_erfc.html +%%DATADIR%%/help/html/mathfunctions_erfcx.html +%%DATADIR%%/help/html/mathfunctions_exp.html +%%DATADIR%%/help/html/mathfunctions_expei.html +%%DATADIR%%/help/html/mathfunctions_expm1.html +%%DATADIR%%/help/html/mathfunctions_fix.html +%%DATADIR%%/help/html/mathfunctions_gamma.html +%%DATADIR%%/help/html/mathfunctions_gammaln.html +%%DATADIR%%/help/html/mathfunctions_idiv.html +%%DATADIR%%/help/html/mathfunctions_log.html +%%DATADIR%%/help/html/mathfunctions_log10.html +%%DATADIR%%/help/html/mathfunctions_log1p.html +%%DATADIR%%/help/html/mathfunctions_log2.html +%%DATADIR%%/help/html/mathfunctions_mod.html +%%DATADIR%%/help/html/mathfunctions_psi.html +%%DATADIR%%/help/html/mathfunctions_rad2deg.html +%%DATADIR%%/help/html/mathfunctions_rem.html +%%DATADIR%%/help/html/mathfunctions_sec.html +%%DATADIR%%/help/html/mathfunctions_secd.html +%%DATADIR%%/help/html/mathfunctions_sech.html +%%DATADIR%%/help/html/mathfunctions_sin.html +%%DATADIR%%/help/html/mathfunctions_sind.html +%%DATADIR%%/help/html/mathfunctions_sinh.html +%%DATADIR%%/help/html/mathfunctions_sqrt.html +%%DATADIR%%/help/html/mathfunctions_tan.html +%%DATADIR%%/help/html/mathfunctions_tand.html +%%DATADIR%%/help/html/mathfunctions_tanh.html +%%DATADIR%%/help/html/max_eqn1.png +%%DATADIR%%/help/html/max_eqn2.png +%%DATADIR%%/help/html/max_eqn3.png +%%DATADIR%%/help/html/mean_eqn1.png +%%DATADIR%%/help/html/min_eqn1.png +%%DATADIR%%/help/html/min_eqn2.png +%%DATADIR%%/help/html/min_eqn3.png +%%DATADIR%%/help/html/minus_eqn1.png +%%DATADIR%%/help/html/minus_eqn2.png +%%DATADIR%%/help/html/minus_eqn3.png +%%DATADIR%%/help/html/modules.txt +%%DATADIR%%/help/html/mpi_mpirun.html +%%DATADIR%%/help/html/mpi_mpiserver.html +%%DATADIR%%/help/html/ndgrid_eqn1.png +%%DATADIR%%/help/html/operators_colon.html +%%DATADIR%%/help/html/operators_comparisonops.html +%%DATADIR%%/help/html/operators_dotleftdivide.html +%%DATADIR%%/help/html/operators_dotpower.html +%%DATADIR%%/help/html/operators_dotrightdivide.html +%%DATADIR%%/help/html/operators_dottimes.html +%%DATADIR%%/help/html/operators_hermitian.html +%%DATADIR%%/help/html/operators_leftdivide.html +%%DATADIR%%/help/html/operators_logicalops.html +%%DATADIR%%/help/html/operators_minus.html +%%DATADIR%%/help/html/operators_plus.html +%%DATADIR%%/help/html/operators_power.html +%%DATADIR%%/help/html/operators_rightdivide.html +%%DATADIR%%/help/html/operators_times.html +%%DATADIR%%/help/html/operators_transpose.html +%%DATADIR%%/help/html/os_cd.html +%%DATADIR%%/help/html/os_dir.html +%%DATADIR%%/help/html/os_dirsep.html +%%DATADIR%%/help/html/os_fullfile.html +%%DATADIR%%/help/html/os_getpath.html +%%DATADIR%%/help/html/os_ls.html +%%DATADIR%%/help/html/os_pwd.html +%%DATADIR%%/help/html/os_setpath.html +%%DATADIR%%/help/html/os_system.html +%%DATADIR%%/help/html/pinv_eqn1.png +%%DATADIR%%/help/html/pinv_eqn2.png +%%DATADIR%%/help/html/plot1.jpg +%%DATADIR%%/help/html/plot1.png +%%DATADIR%%/help/html/plot2.jpg +%%DATADIR%%/help/html/plot2.png +%%DATADIR%%/help/html/plot3.jpg +%%DATADIR%%/help/html/plot3.png +%%DATADIR%%/help/html/plot4.jpg +%%DATADIR%%/help/html/plot4.png +%%DATADIR%%/help/html/plot5.jpg +%%DATADIR%%/help/html/plot5.png +%%DATADIR%%/help/html/plot6.jpg +%%DATADIR%%/help/html/plot6.png +%%DATADIR%%/help/html/plt3.jpg +%%DATADIR%%/help/html/plt3.png +%%DATADIR%%/help/html/plus_eqn1.png +%%DATADIR%%/help/html/plus_eqn2.png +%%DATADIR%%/help/html/plus_eqn3.png +%%DATADIR%%/help/html/point_eqn1.png +%%DATADIR%%/help/html/polyfit1.jpg +%%DATADIR%%/help/html/polyfit1.png +%%DATADIR%%/help/html/polyfit2.jpg +%%DATADIR%%/help/html/polyfit2.png +%%DATADIR%%/help/html/polyfit3.jpg +%%DATADIR%%/help/html/polyfit3.png +%%DATADIR%%/help/html/polyfit_eqn1.png +%%DATADIR%%/help/html/polyfit_eqn2.png +%%DATADIR%%/help/html/polyval1.jpg +%%DATADIR%%/help/html/polyval1.png +%%DATADIR%%/help/html/polyval_eqn1.png +%%DATADIR%%/help/html/polyval_eqn2.png +%%DATADIR%%/help/html/power_eqn1.png +%%DATADIR%%/help/html/power_eqn2.png +%%DATADIR%%/help/html/power_eqn3.png +%%DATADIR%%/help/html/power_eqn4.png +%%DATADIR%%/help/html/printfig1.jpg +%%DATADIR%%/help/html/printfig1.png +%%DATADIR%%/help/html/prod_eqn1.png +%%DATADIR%%/help/html/psi1.jpg +%%DATADIR%%/help/html/psi1.png +%%DATADIR%%/help/html/psi_eqn1.png +%%DATADIR%%/help/html/randbeta_eqn1.png +%%DATADIR%%/help/html/randbin_eqn1.png +%%DATADIR%%/help/html/randchi_eqn1.png +%%DATADIR%%/help/html/randexp_eqn1.png +%%DATADIR%%/help/html/randf_eqn1.png +%%DATADIR%%/help/html/randf_eqn2.png +%%DATADIR%%/help/html/randgamma_eqn1.png +%%DATADIR%%/help/html/randmulti_eqn1.png +%%DATADIR%%/help/html/randmulti_eqn2.png +%%DATADIR%%/help/html/randn_eqn1.png +%%DATADIR%%/help/html/randnbin_eqn1.png +%%DATADIR%%/help/html/randnf_eqn1.png +%%DATADIR%%/help/html/random_rand.html +%%DATADIR%%/help/html/random_randbeta.html +%%DATADIR%%/help/html/random_randbin.html +%%DATADIR%%/help/html/random_randchi.html +%%DATADIR%%/help/html/random_randexp.html +%%DATADIR%%/help/html/random_randf.html +%%DATADIR%%/help/html/random_randgamma.html +%%DATADIR%%/help/html/random_randi.html +%%DATADIR%%/help/html/random_randmulti.html +%%DATADIR%%/help/html/random_randn.html +%%DATADIR%%/help/html/random_randnbin.html +%%DATADIR%%/help/html/random_randnchi.html +%%DATADIR%%/help/html/random_randnf.html +%%DATADIR%%/help/html/random_randp.html +%%DATADIR%%/help/html/random_seed.html +%%DATADIR%%/help/html/randp_eqn1.png +%%DATADIR%%/help/html/rightdivide_eqn1.png +%%DATADIR%%/help/html/rightdivide_eqn2.png +%%DATADIR%%/help/html/rightdivide_eqn3.png +%%DATADIR%%/help/html/sec_array.html +%%DATADIR%%/help/html/sec_binary.html +%%DATADIR%%/help/html/sec_class.html +%%DATADIR%%/help/html/sec_constants.html +%%DATADIR%%/help/html/sec_curvefit.html +%%DATADIR%%/help/html/sec_debug.html +%%DATADIR%%/help/html/sec_elementary.html +%%DATADIR%%/help/html/sec_eqn1.png +%%DATADIR%%/help/html/sec_flow.html +%%DATADIR%%/help/html/sec_freemat.html +%%DATADIR%%/help/html/sec_functions.html +%%DATADIR%%/help/html/sec_handle.html +%%DATADIR%%/help/html/sec_inspection.html +%%DATADIR%%/help/html/sec_introduction.html +%%DATADIR%%/help/html/sec_io.html +%%DATADIR%%/help/html/sec_mathfunctions.html +%%DATADIR%%/help/html/sec_mpi.html +%%DATADIR%%/help/html/sec_operators.html +%%DATADIR%%/help/html/sec_os.html +%%DATADIR%%/help/html/sec_random.html +%%DATADIR%%/help/html/sec_signal.html +%%DATADIR%%/help/html/sec_sparse.html +%%DATADIR%%/help/html/sec_string.html +%%DATADIR%%/help/html/sec_transforms.html +%%DATADIR%%/help/html/sec_typecast.html +%%DATADIR%%/help/html/sec_variables.html +%%DATADIR%%/help/html/sech_eqn1.png +%%DATADIR%%/help/html/sechplot.jpg +%%DATADIR%%/help/html/sechplot.png +%%DATADIR%%/help/html/secplot.jpg +%%DATADIR%%/help/html/secplot.png +%%DATADIR%%/help/html/sectable.txt +%%DATADIR%%/help/html/semilogx1.jpg +%%DATADIR%%/help/html/semilogx1.png +%%DATADIR%%/help/html/semilogx2.jpg +%%DATADIR%%/help/html/semilogx2.png +%%DATADIR%%/help/html/semilogy1.jpg +%%DATADIR%%/help/html/semilogy1.png +%%DATADIR%%/help/html/semilogy2.jpg +%%DATADIR%%/help/html/semilogy2.png +%%DATADIR%%/help/html/signal_conv.html +%%DATADIR%%/help/html/signal_conv2.html +%%DATADIR%%/help/html/sin_eqn1.png +%%DATADIR%%/help/html/sin_eqn2.png +%%DATADIR%%/help/html/sinh_eqn1.png +%%DATADIR%%/help/html/sinhplot.jpg +%%DATADIR%%/help/html/sinhplot.png +%%DATADIR%%/help/html/sinplot.jpg +%%DATADIR%%/help/html/sinplot.png +%%DATADIR%%/help/html/sparse_eigs.html +%%DATADIR%%/help/html/sparse_full.html +%%DATADIR%%/help/html/sparse_nnz.html +%%DATADIR%%/help/html/sparse_sparse.html +%%DATADIR%%/help/html/sparse_speye.html +%%DATADIR%%/help/html/sparse_spones.html +%%DATADIR%%/help/html/sparse_sprand.html +%%DATADIR%%/help/html/sparse_sprandn.html +%%DATADIR%%/help/html/sparse_spy.html +%%DATADIR%%/help/html/spy1.jpg +%%DATADIR%%/help/html/spy1.png +%%DATADIR%%/help/html/spy2.jpg +%%DATADIR%%/help/html/spy2.png +%%DATADIR%%/help/html/string_cellstr.html +%%DATADIR%%/help/html/string_deblank.html +%%DATADIR%%/help/html/string_isalpha.html +%%DATADIR%%/help/html/string_isdigit.html +%%DATADIR%%/help/html/string_isspace.html +%%DATADIR%%/help/html/string_strcmp.html +%%DATADIR%%/help/html/string_strfind.html +%%DATADIR%%/help/html/string_strncmp.html +%%DATADIR%%/help/html/string_strrep.html +%%DATADIR%%/help/html/string_strstr.html +%%DATADIR%%/help/html/string_strtrim.html +%%DATADIR%%/help/html/subplot1.jpg +%%DATADIR%%/help/html/subplot1.png +%%DATADIR%%/help/html/subplot2.jpg +%%DATADIR%%/help/html/subplot2.png +%%DATADIR%%/help/html/subplot3.jpg +%%DATADIR%%/help/html/subplot3.png +%%DATADIR%%/help/html/sum_eqn1.png +%%DATADIR%%/help/html/surf1.jpg +%%DATADIR%%/help/html/surf1.png +%%DATADIR%%/help/html/surf2.jpg +%%DATADIR%%/help/html/surf2.png +%%DATADIR%%/help/html/svd_eqn1.png +%%DATADIR%%/help/html/svd_eqn2.png +%%DATADIR%%/help/html/svd_eqn3.png +%%DATADIR%%/help/html/tan_eqn1.png +%%DATADIR%%/help/html/tan_eqn2.png +%%DATADIR%%/help/html/tan_eqn3.png +%%DATADIR%%/help/html/tanh_eqn1.png +%%DATADIR%%/help/html/tanhplot.jpg +%%DATADIR%%/help/html/tanhplot.png +%%DATADIR%%/help/html/tanplot.jpg +%%DATADIR%%/help/html/tanplot.png +%%DATADIR%%/help/html/text1.jpg +%%DATADIR%%/help/html/text1.png +%%DATADIR%%/help/html/text2.jpg +%%DATADIR%%/help/html/text2.png +%%DATADIR%%/help/html/times_eqn1.png +%%DATADIR%%/help/html/times_eqn2.png +%%DATADIR%%/help/html/times_eqn3.png +%%DATADIR%%/help/html/title1.jpg +%%DATADIR%%/help/html/title1.png +%%DATADIR%%/help/html/title2.jpg +%%DATADIR%%/help/html/title2.png +%%DATADIR%%/help/html/transforms_eig.html +%%DATADIR%%/help/html/transforms_fft.html +%%DATADIR%%/help/html/transforms_fftn.html +%%DATADIR%%/help/html/transforms_fftshift.html +%%DATADIR%%/help/html/transforms_ifftn.html +%%DATADIR%%/help/html/transforms_ifftshift.html +%%DATADIR%%/help/html/transforms_inv.html +%%DATADIR%%/help/html/transforms_lu.html +%%DATADIR%%/help/html/transforms_qr.html +%%DATADIR%%/help/html/transforms_svd.html +%%DATADIR%%/help/html/transpose_eqn1.png +%%DATADIR%%/help/html/tubeplot1.jpg +%%DATADIR%%/help/html/tubeplot1.png +%%DATADIR%%/help/html/typecast_complex.html +%%DATADIR%%/help/html/typecast_dcomplex.html +%%DATADIR%%/help/html/typecast_double.html +%%DATADIR%%/help/html/typecast_float.html +%%DATADIR%%/help/html/typecast_int16.html +%%DATADIR%%/help/html/typecast_int32.html +%%DATADIR%%/help/html/typecast_int64.html +%%DATADIR%%/help/html/typecast_int8.html +%%DATADIR%%/help/html/typecast_logical.html +%%DATADIR%%/help/html/typecast_single.html +%%DATADIR%%/help/html/typecast_string.html +%%DATADIR%%/help/html/typecast_typeof.html +%%DATADIR%%/help/html/typecast_uint16.html +%%DATADIR%%/help/html/typecast_uint32.html +%%DATADIR%%/help/html/typecast_uint64.html +%%DATADIR%%/help/html/typecast_uint8.html +%%DATADIR%%/help/html/var_eqn1.png +%%DATADIR%%/help/html/var_eqn2.png +%%DATADIR%%/help/html/variables_cell.html +%%DATADIR%%/help/html/variables_function.html +%%DATADIR%%/help/html/variables_global.html +%%DATADIR%%/help/html/variables_indexing.html +%%DATADIR%%/help/html/variables_matrix.html +%%DATADIR%%/help/html/variables_persistent.html +%%DATADIR%%/help/html/variables_string.html +%%DATADIR%%/help/html/variables_struct.html +%%DATADIR%%/help/html/view1.jpg +%%DATADIR%%/help/html/view1.png +%%DATADIR%%/help/html/view2.jpg +%%DATADIR%%/help/html/view2.png +%%DATADIR%%/help/html/view3.jpg +%%DATADIR%%/help/html/view3.png +%%DATADIR%%/help/html/winlev1.jpg +%%DATADIR%%/help/html/winlev1.png +%%DATADIR%%/help/html/winlev2.jpg +%%DATADIR%%/help/html/winlev2.png +%%DATADIR%%/help/html/winlev_eqn1.png +%%DATADIR%%/help/html/winlev_eqn2.png +%%DATADIR%%/help/html/winlev_eqn3.png +%%DATADIR%%/help/html/xlabel1.jpg +%%DATADIR%%/help/html/xlabel1.png +%%DATADIR%%/help/html/xlim1.jpg +%%DATADIR%%/help/html/xlim1.png +%%DATADIR%%/help/html/xlim2.jpg +%%DATADIR%%/help/html/xlim2.png +%%DATADIR%%/help/html/ylabel1.jpg +%%DATADIR%%/help/html/ylabel1.png +%%DATADIR%%/help/html/ylim1.jpg +%%DATADIR%%/help/html/ylim1.png +%%DATADIR%%/help/html/ylim2.jpg +%%DATADIR%%/help/html/ylim2.png +%%DATADIR%%/help/html/zlabel1.jpg +%%DATADIR%%/help/html/zlabel1.png +%%DATADIR%%/help/html/zlim1.jpg +%%DATADIR%%/help/html/zlim1.png +%%DATADIR%%/help/html/zlim2.jpg +%%DATADIR%%/help/html/zlim2.png +%%DATADIR%%/help/html/zoom1.jpg +%%DATADIR%%/help/html/zoom1.png +%%DATADIR%%/help/html/zoom3.jpg +%%DATADIR%%/help/html/zoom3.png +%%DATADIR%%/help/html/zoom4.jpg +%%DATADIR%%/help/html/zoom4.png +%%DATADIR%%/help/html/zoom5.jpg +%%DATADIR%%/help/html/zoom5.png +%%DATADIR%%/help/html/zoom6.jpg +%%DATADIR%%/help/html/zoom6.png +%%DATADIR%%/help/latex/main.pdf +%%DATADIR%%/help/text/abs.mdc +%%DATADIR%%/help/text/acos.mdc +%%DATADIR%%/help/text/acosd.mdc +%%DATADIR%%/help/text/acosh.mdc +%%DATADIR%%/help/text/acot.mdc +%%DATADIR%%/help/text/acotd.mdc +%%DATADIR%%/help/text/acoth.mdc +%%DATADIR%%/help/text/acsc.mdc +%%DATADIR%%/help/text/acscd.mdc +%%DATADIR%%/help/text/acsch.mdc +%%DATADIR%%/help/text/addpath.mdc +%%DATADIR%%/help/text/all.mdc +%%DATADIR%%/help/text/and.mdc +%%DATADIR%%/help/text/angle.mdc +%%DATADIR%%/help/text/any.mdc +%%DATADIR%%/help/text/asec.mdc +%%DATADIR%%/help/text/asecd.mdc +%%DATADIR%%/help/text/asech.mdc +%%DATADIR%%/help/text/asin.mdc +%%DATADIR%%/help/text/asind.mdc +%%DATADIR%%/help/text/asinh.mdc +%%DATADIR%%/help/text/assignin.mdc +%%DATADIR%%/help/text/atan.mdc +%%DATADIR%%/help/text/atan2.mdc +%%DATADIR%%/help/text/atand.mdc +%%DATADIR%%/help/text/atanh.mdc +%%DATADIR%%/help/text/axes.mdc +%%DATADIR%%/help/text/axis.mdc +%%DATADIR%%/help/text/axisproperties.mdc +%%DATADIR%%/help/text/bin2dec.mdc +%%DATADIR%%/help/text/bin2int.mdc +%%DATADIR%%/help/text/bitand.mdc +%%DATADIR%%/help/text/bitcmp.mdc +%%DATADIR%%/help/text/bitor.mdc +%%DATADIR%%/help/text/bitxor.mdc +%%DATADIR%%/help/text/break.mdc +%%DATADIR%%/help/text/builtin.mdc +%%DATADIR%%/help/text/cast.mdc +%%DATADIR%%/help/text/cd.mdc +%%DATADIR%%/help/text/ceil.mdc +%%DATADIR%%/help/text/cell.mdc +%%DATADIR%%/help/text/cellstr.mdc +%%DATADIR%%/help/text/char.mdc +%%DATADIR%%/help/text/circshift.mdc +%%DATADIR%%/help/text/cla.mdc +%%DATADIR%%/help/text/class.mdc +%%DATADIR%%/help/text/clear.mdc +%%DATADIR%%/help/text/clf.mdc +%%DATADIR%%/help/text/clim.mdc +%%DATADIR%%/help/text/clock.mdc +%%DATADIR%%/help/text/clocktotime.mdc +%%DATADIR%%/help/text/close.mdc +%%DATADIR%%/help/text/colon.mdc +%%DATADIR%%/help/text/colorbar.mdc +%%DATADIR%%/help/text/colormap.mdc +%%DATADIR%%/help/text/colorspec.mdc +%%DATADIR%%/help/text/comparisonops.mdc +%%DATADIR%%/help/text/complex.mdc +%%DATADIR%%/help/text/computer.mdc +%%DATADIR%%/help/text/cond.mdc +%%DATADIR%%/help/text/conj.mdc +%%DATADIR%%/help/text/constructors.mdc +%%DATADIR%%/help/text/continue.mdc +%%DATADIR%%/help/text/conv.mdc +%%DATADIR%%/help/text/conv2.mdc +%%DATADIR%%/help/text/copper.mdc +%%DATADIR%%/help/text/copy.mdc +%%DATADIR%%/help/text/cos.mdc +%%DATADIR%%/help/text/cosd.mdc +%%DATADIR%%/help/text/cosh.mdc +%%DATADIR%%/help/text/cot.mdc +%%DATADIR%%/help/text/cotd.mdc +%%DATADIR%%/help/text/coth.mdc +%%DATADIR%%/help/text/cross.mdc +%%DATADIR%%/help/text/csc.mdc +%%DATADIR%%/help/text/cscd.mdc +%%DATADIR%%/help/text/csch.mdc +%%DATADIR%%/help/text/csvread.mdc +%%DATADIR%%/help/text/csvwrite.mdc +%%DATADIR%%/help/text/ctranspose.mdc +%%DATADIR%%/help/text/cumsum.mdc +%%DATADIR%%/help/text/dawson.mdc +%%DATADIR%%/help/text/dbauto.mdc +%%DATADIR%%/help/text/dbdelete.mdc +%%DATADIR%%/help/text/dblist.mdc +%%DATADIR%%/help/text/dbstep.mdc +%%DATADIR%%/help/text/dbstop.mdc +%%DATADIR%%/help/text/dcomplex.mdc +%%DATADIR%%/help/text/deal.mdc +%%DATADIR%%/help/text/deblank.mdc +%%DATADIR%%/help/text/dec2bin.mdc +%%DATADIR%%/help/text/deg2rad.mdc +%%DATADIR%%/help/text/det.mdc +%%DATADIR%%/help/text/diag.mdc +%%DATADIR%%/help/text/dir.mdc +%%DATADIR%%/help/text/dirsep.mdc +%%DATADIR%%/help/text/disp.mdc +%%DATADIR%%/help/text/dotleftdivide.mdc +%%DATADIR%%/help/text/dotpower.mdc +%%DATADIR%%/help/text/dotrightdivide.mdc +%%DATADIR%%/help/text/dottimes.mdc +%%DATADIR%%/help/text/double.mdc +%%DATADIR%%/help/text/e.mdc +%%DATADIR%%/help/text/editor.mdc +%%DATADIR%%/help/text/ei.mdc +%%DATADIR%%/help/text/eig.mdc +%%DATADIR%%/help/text/eigs.mdc +%%DATADIR%%/help/text/eone.mdc +%%DATADIR%%/help/text/eps.mdc +%%DATADIR%%/help/text/eq.mdc +%%DATADIR%%/help/text/erf.mdc +%%DATADIR%%/help/text/erfc.mdc +%%DATADIR%%/help/text/erfcx.mdc +%%DATADIR%%/help/text/error.mdc +%%DATADIR%%/help/text/etime.mdc +%%DATADIR%%/help/text/eval.mdc +%%DATADIR%%/help/text/evalin.mdc +%%DATADIR%%/help/text/exist.mdc +%%DATADIR%%/help/text/exit.mdc +%%DATADIR%%/help/text/exp.mdc +%%DATADIR%%/help/text/expei.mdc +%%DATADIR%%/help/text/expm.mdc +%%DATADIR%%/help/text/expm1.mdc +%%DATADIR%%/help/text/eye.mdc +%%DATADIR%%/help/text/fclose.mdc +%%DATADIR%%/help/text/feof.mdc +%%DATADIR%%/help/text/feps.mdc +%%DATADIR%%/help/text/feval.mdc +%%DATADIR%%/help/text/fft.mdc +%%DATADIR%%/help/text/fftn.mdc +%%DATADIR%%/help/text/fftshift.mdc +%%DATADIR%%/help/text/fgetline.mdc +%%DATADIR%%/help/text/fieldnames.mdc +%%DATADIR%%/help/text/figure.mdc +%%DATADIR%%/help/text/figureproperties.mdc +%%DATADIR%%/help/text/filesep.mdc +%%DATADIR%%/help/text/find.mdc +%%DATADIR%%/help/text/fitfun.mdc +%%DATADIR%%/help/text/fix.mdc +%%DATADIR%%/help/text/flipdim.mdc +%%DATADIR%%/help/text/fliplr.mdc +%%DATADIR%%/help/text/flipud.mdc +%%DATADIR%%/help/text/float.mdc +%%DATADIR%%/help/text/floor.mdc +%%DATADIR%%/help/text/fopen.mdc +%%DATADIR%%/help/text/for.mdc +%%DATADIR%%/help/text/fprintf.mdc +%%DATADIR%%/help/text/fread.mdc +%%DATADIR%%/help/text/fscanf.mdc +%%DATADIR%%/help/text/fseek.mdc +%%DATADIR%%/help/text/ftell.mdc +%%DATADIR%%/help/text/full.mdc +%%DATADIR%%/help/text/fullfile.mdc +%%DATADIR%%/help/text/function.mdc +%%DATADIR%%/help/text/fwrite.mdc +%%DATADIR%%/help/text/gamma.mdc +%%DATADIR%%/help/text/gammaln.mdc +%%DATADIR%%/help/text/gausfit.mdc +%%DATADIR%%/help/text/gca.mdc +%%DATADIR%%/help/text/gcf.mdc +%%DATADIR%%/help/text/ge.mdc +%%DATADIR%%/help/text/get.mdc +%%DATADIR%%/help/text/getfield.mdc +%%DATADIR%%/help/text/getline.mdc +%%DATADIR%%/help/text/getpath.mdc +%%DATADIR%%/help/text/getprintlimit.mdc +%%DATADIR%%/help/text/global.mdc +%%DATADIR%%/help/text/gray.mdc +%%DATADIR%%/help/text/grid.mdc +%%DATADIR%%/help/text/gt.mdc +%%DATADIR%%/help/text/help.mdc +%%DATADIR%%/help/text/helpwin.mdc +%%DATADIR%%/help/text/hermitian.mdc +%%DATADIR%%/help/text/himage.mdc +%%DATADIR%%/help/text/hline.mdc +%%DATADIR%%/help/text/hold.mdc +%%DATADIR%%/help/text/horzcat.mdc +%%DATADIR%%/help/text/hpoint.mdc +%%DATADIR%%/help/text/hsurface.mdc +%%DATADIR%%/help/text/htext.mdc +%%DATADIR%%/help/text/i.mdc +%%DATADIR%%/help/text/idiv.mdc +%%DATADIR%%/help/text/if.mdc +%%DATADIR%%/help/text/ifftn.mdc +%%DATADIR%%/help/text/ifftshift.mdc +%%DATADIR%%/help/text/imag.mdc +%%DATADIR%%/help/text/image.mdc +%%DATADIR%%/help/text/imageproperties.mdc +%%DATADIR%%/help/text/import.mdc +%%DATADIR%%/help/text/indexing.mdc +%%DATADIR%%/help/text/inf.mdc +%%DATADIR%%/help/text/input.mdc +%%DATADIR%%/help/text/install.mdc +%%DATADIR%%/help/text/int16.mdc +%%DATADIR%%/help/text/int2bin.mdc +%%DATADIR%%/help/text/int32.mdc +%%DATADIR%%/help/text/int64.mdc +%%DATADIR%%/help/text/int8.mdc +%%DATADIR%%/help/text/interplin1.mdc +%%DATADIR%%/help/text/inv.mdc +%%DATADIR%%/help/text/is2dview.mdc +%%DATADIR%%/help/text/isa.mdc +%%DATADIR%%/help/text/isalpha.mdc +%%DATADIR%%/help/text/iscell.mdc +%%DATADIR%%/help/text/iscellstr.mdc +%%DATADIR%%/help/text/ischar.mdc +%%DATADIR%%/help/text/isdigit.mdc +%%DATADIR%%/help/text/isempty.mdc +%%DATADIR%%/help/text/isfield.mdc +%%DATADIR%%/help/text/ishandle.mdc +%%DATADIR%%/help/text/ishold.mdc +%%DATADIR%%/help/text/isinf.mdc +%%DATADIR%%/help/text/islogical.mdc +%%DATADIR%%/help/text/isnan.mdc +%%DATADIR%%/help/text/isnumeric.mdc +%%DATADIR%%/help/text/isreal.mdc +%%DATADIR%%/help/text/isscalar.mdc +%%DATADIR%%/help/text/isset.mdc +%%DATADIR%%/help/text/isspace.mdc +%%DATADIR%%/help/text/issparse.mdc +%%DATADIR%%/help/text/isstr.mdc +%%DATADIR%%/help/text/isstruct.mdc +%%DATADIR%%/help/text/keyboard.mdc +%%DATADIR%%/help/text/keywords.mdc +%%DATADIR%%/help/text/lasterr.mdc +%%DATADIR%%/help/text/ldivide.mdc +%%DATADIR%%/help/text/le.mdc +%%DATADIR%%/help/text/leftdivide.mdc +%%DATADIR%%/help/text/legend.mdc +%%DATADIR%%/help/text/length.mdc +%%DATADIR%%/help/text/lineproperties.mdc +%%DATADIR%%/help/text/linspace.mdc +%%DATADIR%%/help/text/load.mdc +%%DATADIR%%/help/text/loadlib.mdc +%%DATADIR%%/help/text/log.mdc +%%DATADIR%%/help/text/log10.mdc +%%DATADIR%%/help/text/log1p.mdc +%%DATADIR%%/help/text/log2.mdc +%%DATADIR%%/help/text/logical.mdc +%%DATADIR%%/help/text/logicalops.mdc +%%DATADIR%%/help/text/loglog.mdc +%%DATADIR%%/help/text/ls.mdc +%%DATADIR%%/help/text/lt.mdc +%%DATADIR%%/help/text/lu.mdc +%%DATADIR%%/help/text/matrix.mdc +%%DATADIR%%/help/text/max.mdc +%%DATADIR%%/help/text/mean.mdc +%%DATADIR%%/help/text/mfilename.mdc +%%DATADIR%%/help/text/min.mdc +%%DATADIR%%/help/text/minus.mdc +%%DATADIR%%/help/text/mldivide.mdc +%%DATADIR%%/help/text/mod.mdc +%%DATADIR%%/help/text/mpirun.mdc +%%DATADIR%%/help/text/mpiserver.mdc +%%DATADIR%%/help/text/mpower.mdc +%%DATADIR%%/help/text/mrdivide.mdc +%%DATADIR%%/help/text/mtimes.mdc +%%DATADIR%%/help/text/nan.mdc +%%DATADIR%%/help/text/nargin.mdc +%%DATADIR%%/help/text/nargout.mdc +%%DATADIR%%/help/text/ndgrid.mdc +%%DATADIR%%/help/text/ndims.mdc +%%DATADIR%%/help/text/ne.mdc +%%DATADIR%%/help/text/newplot.mdc +%%DATADIR%%/help/text/nnz.mdc +%%DATADIR%%/help/text/nonzeros.mdc +%%DATADIR%%/help/text/norm.mdc +%%DATADIR%%/help/text/not.mdc +%%DATADIR%%/help/text/numel.mdc +%%DATADIR%%/help/text/ones.mdc +%%DATADIR%%/help/text/or.mdc +%%DATADIR%%/help/text/path.mdc +%%DATADIR%%/help/text/pathsep.mdc +%%DATADIR%%/help/text/pathtool.mdc +%%DATADIR%%/help/text/pcode.mdc +%%DATADIR%%/help/text/persistent.mdc +%%DATADIR%%/help/text/pi.mdc +%%DATADIR%%/help/text/pinv.mdc +%%DATADIR%%/help/text/plot.mdc +%%DATADIR%%/help/text/plot3.mdc +%%DATADIR%%/help/text/plus.mdc +%%DATADIR%%/help/text/point.mdc +%%DATADIR%%/help/text/polyfit.mdc +%%DATADIR%%/help/text/polyval.mdc +%%DATADIR%%/help/text/power.mdc +%%DATADIR%%/help/text/print.mdc +%%DATADIR%%/help/text/printf.mdc +%%DATADIR%%/help/text/prod.mdc +%%DATADIR%%/help/text/psi.mdc +%%DATADIR%%/help/text/pvalid.mdc +%%DATADIR%%/help/text/pwd.mdc +%%DATADIR%%/help/text/qr.mdc +%%DATADIR%%/help/text/quit.mdc +%%DATADIR%%/help/text/rad2deg.mdc +%%DATADIR%%/help/text/rand.mdc +%%DATADIR%%/help/text/randbeta.mdc +%%DATADIR%%/help/text/randbin.mdc +%%DATADIR%%/help/text/randchi.mdc +%%DATADIR%%/help/text/randexp.mdc +%%DATADIR%%/help/text/randf.mdc +%%DATADIR%%/help/text/randgamma.mdc +%%DATADIR%%/help/text/randi.mdc +%%DATADIR%%/help/text/randmulti.mdc +%%DATADIR%%/help/text/randn.mdc +%%DATADIR%%/help/text/randnbin.mdc +%%DATADIR%%/help/text/randnchi.mdc +%%DATADIR%%/help/text/randnf.mdc +%%DATADIR%%/help/text/randp.mdc +%%DATADIR%%/help/text/rank.mdc +%%DATADIR%%/help/text/rawread.mdc +%%DATADIR%%/help/text/rcond.mdc +%%DATADIR%%/help/text/rdivide.mdc +%%DATADIR%%/help/text/real.mdc +%%DATADIR%%/help/text/rehash.mdc +%%DATADIR%%/help/text/rem.mdc +%%DATADIR%%/help/text/repmat.mdc +%%DATADIR%%/help/text/rescan.mdc +%%DATADIR%%/help/text/reshape.mdc +%%DATADIR%%/help/text/retall.mdc +%%DATADIR%%/help/text/return.mdc +%%DATADIR%%/help/text/rightdivide.mdc +%%DATADIR%%/help/text/round.mdc +%%DATADIR%%/help/text/save.mdc +%%DATADIR%%/help/text/script.mdc +%%DATADIR%%/help/text/sec.mdc +%%DATADIR%%/help/text/secd.mdc +%%DATADIR%%/help/text/sech.mdc +%%DATADIR%%/help/text/seed.mdc +%%DATADIR%%/help/text/semilogx.mdc +%%DATADIR%%/help/text/semilogy.mdc +%%DATADIR%%/help/text/set.mdc +%%DATADIR%%/help/text/setpath.mdc +%%DATADIR%%/help/text/setprintlimit.mdc +%%DATADIR%%/help/text/sin.mdc +%%DATADIR%%/help/text/sind.mdc +%%DATADIR%%/help/text/single.mdc +%%DATADIR%%/help/text/sinh.mdc +%%DATADIR%%/help/text/size.mdc +%%DATADIR%%/help/text/sizefig.mdc +%%DATADIR%%/help/text/sleep.mdc +%%DATADIR%%/help/text/sort.mdc +%%DATADIR%%/help/text/source.mdc +%%DATADIR%%/help/text/sparse.mdc +%%DATADIR%%/help/text/special.mdc +%%DATADIR%%/help/text/speye.mdc +%%DATADIR%%/help/text/spones.mdc +%%DATADIR%%/help/text/sprand.mdc +%%DATADIR%%/help/text/sprandn.mdc +%%DATADIR%%/help/text/sprintf.mdc +%%DATADIR%%/help/text/spy.mdc +%%DATADIR%%/help/text/sqrt.mdc +%%DATADIR%%/help/text/squeeze.mdc +%%DATADIR%%/help/text/sscanf.mdc +%%DATADIR%%/help/text/std.mdc +%%DATADIR%%/help/text/str2num.mdc +%%DATADIR%%/help/text/strcmp.mdc +%%DATADIR%%/help/text/strfind.mdc +%%DATADIR%%/help/text/string.mdc +%%DATADIR%%/help/text/strncmp.mdc +%%DATADIR%%/help/text/strrep.mdc +%%DATADIR%%/help/text/strstr.mdc +%%DATADIR%%/help/text/strtrim.mdc +%%DATADIR%%/help/text/struct.mdc +%%DATADIR%%/help/text/sub2ind.mdc +%%DATADIR%%/help/text/subplot.mdc +%%DATADIR%%/help/text/subsasgn.mdc +%%DATADIR%%/help/text/subsindex.mdc +%%DATADIR%%/help/text/subsref.mdc +%%DATADIR%%/help/text/sum.mdc +%%DATADIR%%/help/text/surf.mdc +%%DATADIR%%/help/text/surfaceproperties.mdc +%%DATADIR%%/help/text/svd.mdc +%%DATADIR%%/help/text/switch.mdc +%%DATADIR%%/help/text/system.mdc +%%DATADIR%%/help/text/tan.mdc +%%DATADIR%%/help/text/tand.mdc +%%DATADIR%%/help/text/tanh.mdc +%%DATADIR%%/help/text/teps.mdc +%%DATADIR%%/help/text/text.mdc +%%DATADIR%%/help/text/textproperties.mdc +%%DATADIR%%/help/text/tic.mdc +%%DATADIR%%/help/text/times.mdc +%%DATADIR%%/help/text/title.mdc +%%DATADIR%%/help/text/toc.mdc +%%DATADIR%%/help/text/transpose.mdc +%%DATADIR%%/help/text/try.mdc +%%DATADIR%%/help/text/tubeplot.mdc +%%DATADIR%%/help/text/typeof.mdc +%%DATADIR%%/help/text/uicontrol.mdc +%%DATADIR%%/help/text/uicontrolproperties.mdc +%%DATADIR%%/help/text/uint16.mdc +%%DATADIR%%/help/text/uint32.mdc +%%DATADIR%%/help/text/uint64.mdc +%%DATADIR%%/help/text/uint8.mdc +%%DATADIR%%/help/text/uminus.mdc +%%DATADIR%%/help/text/unique.mdc +%%DATADIR%%/help/text/uplus.mdc +%%DATADIR%%/help/text/var.mdc +%%DATADIR%%/help/text/varargin.mdc +%%DATADIR%%/help/text/varargout.mdc +%%DATADIR%%/help/text/vec.mdc +%%DATADIR%%/help/text/vertcat.mdc +%%DATADIR%%/help/text/view.mdc +%%DATADIR%%/help/text/warning.mdc +%%DATADIR%%/help/text/where.mdc +%%DATADIR%%/help/text/which.mdc +%%DATADIR%%/help/text/while.mdc +%%DATADIR%%/help/text/who.mdc +%%DATADIR%%/help/text/winlev.mdc +%%DATADIR%%/help/text/xlabel.mdc +%%DATADIR%%/help/text/xlim.mdc +%%DATADIR%%/help/text/xnrm2.mdc +%%DATADIR%%/help/text/ylabel.mdc +%%DATADIR%%/help/text/ylim.mdc +%%DATADIR%%/help/text/zeros.mdc +%%DATADIR%%/help/text/zlabel.mdc +%%DATADIR%%/help/text/zlim.mdc +%%DATADIR%%/help/text/zoom.mdc +%%DATADIR%%/help/toolbox/@inline/inline.m +%%DATADIR%%/help/toolbox/@inline/subsref.m +%%DATADIR%%/help/toolbox/array/all.m +%%DATADIR%%/help/toolbox/array/any.m +%%DATADIR%%/help/toolbox/array/cast.m +%%DATADIR%%/help/toolbox/array/char.m +%%DATADIR%%/help/toolbox/array/circshift.m +%%DATADIR%%/help/toolbox/array/deal.m +%%DATADIR%%/help/toolbox/array/flipdim.m +%%DATADIR%%/help/toolbox/array/fliplr.m +%%DATADIR%%/help/toolbox/array/flipud.m +%%DATADIR%%/help/toolbox/array/getfield.m +%%DATADIR%%/help/toolbox/array/isa.m +%%DATADIR%%/help/toolbox/array/isalpha.m +%%DATADIR%%/help/toolbox/array/iscell.m +%%DATADIR%%/help/toolbox/array/iscellstr.m +%%DATADIR%%/help/toolbox/array/ischar.m +%%DATADIR%%/help/toolbox/array/isdigit.m +%%DATADIR%%/help/toolbox/array/isfield.m +%%DATADIR%%/help/toolbox/array/ishandle.m +%%DATADIR%%/help/toolbox/array/ishold.m +%%DATADIR%%/help/toolbox/array/islogical.m +%%DATADIR%%/help/toolbox/array/isnumeric.m +%%DATADIR%%/help/toolbox/array/isreal.m +%%DATADIR%%/help/toolbox/array/isscalar.m +%%DATADIR%%/help/toolbox/array/isspace.m +%%DATADIR%%/help/toolbox/array/isstr.m +%%DATADIR%%/help/toolbox/array/isstruct.m +%%DATADIR%%/help/toolbox/array/length.m +%%DATADIR%%/help/toolbox/array/linspace.m +%%DATADIR%%/help/toolbox/array/ndgrid.m +%%DATADIR%%/help/toolbox/array/ndims.m +%%DATADIR%%/help/toolbox/array/nonzeros.m +%%DATADIR%%/help/toolbox/array/numel.m +%%DATADIR%%/help/toolbox/array/squeeze.m +%%DATADIR%%/help/toolbox/array/sub2ind.m +%%DATADIR%%/help/toolbox/array/vec.m +%%DATADIR%%/help/toolbox/binary/bin2dec.m +%%DATADIR%%/help/toolbox/binary/bitand.m +%%DATADIR%%/help/toolbox/binary/bitcmp.m +%%DATADIR%%/help/toolbox/binary/bitor.m +%%DATADIR%%/help/toolbox/binary/bitxor.m +%%DATADIR%%/help/toolbox/binary/dec2bin.m +%%DATADIR%%/help/toolbox/deprecated/bind.m +%%DATADIR%%/help/toolbox/fitting/gausfit.m +%%DATADIR%%/help/toolbox/fitting/gfitfun.m +%%DATADIR%%/help/toolbox/general/install.m +%%DATADIR%%/help/toolbox/general/license.m +%%DATADIR%%/help/toolbox/geom/cross.m +%%DATADIR%%/help/toolbox/graph/axis.m +%%DATADIR%%/help/toolbox/graph/cla.m +%%DATADIR%%/help/toolbox/graph/clf.m +%%DATADIR%%/help/toolbox/graph/clim.m +%%DATADIR%%/help/toolbox/graph/colorbar.m +%%DATADIR%%/help/toolbox/graph/colormap.m +%%DATADIR%%/help/toolbox/graph/copper.m +%%DATADIR%%/help/toolbox/graph/gray.m +%%DATADIR%%/help/toolbox/graph/grid.m +%%DATADIR%%/help/toolbox/graph/hold.m +%%DATADIR%%/help/toolbox/graph/image.m +%%DATADIR%%/help/toolbox/graph/legend.m +%%DATADIR%%/help/toolbox/graph/loglog.m +%%DATADIR%%/help/toolbox/graph/newplot.m +%%DATADIR%%/help/toolbox/graph/plot.m +%%DATADIR%%/help/toolbox/graph/plot3.m +%%DATADIR%%/help/toolbox/graph/point.m +%%DATADIR%%/help/toolbox/graph/semilogx.m +%%DATADIR%%/help/toolbox/graph/semilogy.m +%%DATADIR%%/help/toolbox/graph/sizefig.m +%%DATADIR%%/help/toolbox/graph/subplot.m +%%DATADIR%%/help/toolbox/graph/surf.m +%%DATADIR%%/help/toolbox/graph/testtube.m +%%DATADIR%%/help/toolbox/graph/text.m +%%DATADIR%%/help/toolbox/graph/title.m +%%DATADIR%%/help/toolbox/graph/tubeplot.m +%%DATADIR%%/help/toolbox/graph/view.m +%%DATADIR%%/help/toolbox/graph/winlev.m +%%DATADIR%%/help/toolbox/graph/xlabel.m +%%DATADIR%%/help/toolbox/graph/xlim.m +%%DATADIR%%/help/toolbox/graph/ylabel.m +%%DATADIR%%/help/toolbox/graph/ylim.m +%%DATADIR%%/help/toolbox/graph/zlabel.m +%%DATADIR%%/help/toolbox/graph/zlim.m +%%DATADIR%%/help/toolbox/graph/zoom.m +%%DATADIR%%/help/toolbox/help/mprint.m +%%DATADIR%%/help/toolbox/io/csvread.m +%%DATADIR%%/help/toolbox/io/csvwrite.m +%%DATADIR%%/help/toolbox/io/input.m +%%DATADIR%%/help/toolbox/io/rawread.m +%%DATADIR%%/help/toolbox/matrix/cond.m +%%DATADIR%%/help/toolbox/matrix/det.m +%%DATADIR%%/help/toolbox/matrix/expm.m +%%DATADIR%%/help/toolbox/matrix/eye.m +%%DATADIR%%/help/toolbox/matrix/norm.m +%%DATADIR%%/help/toolbox/matrix/pinv.m +%%DATADIR%%/help/toolbox/matrix/rank.m +%%DATADIR%%/help/toolbox/matrix/transpose.m +%%DATADIR%%/help/toolbox/mpi/mpirun.m +%%DATADIR%%/help/toolbox/mpi/mpiserver.m +%%DATADIR%%/help/toolbox/numerical/fix.m +%%DATADIR%%/help/toolbox/numerical/idiv.m +%%DATADIR%%/help/toolbox/numerical/log10.m +%%DATADIR%%/help/toolbox/numerical/log2.m +%%DATADIR%%/help/toolbox/numerical/mod.m +%%DATADIR%%/help/toolbox/numerical/rem.m +%%DATADIR%%/help/toolbox/numerical/sqrt.m +%%DATADIR%%/help/toolbox/numerical/teps.m +%%DATADIR%%/help/toolbox/poly/polyfit.m +%%DATADIR%%/help/toolbox/poly/polyval.m +%%DATADIR%%/help/toolbox/signal/conv.m +%%DATADIR%%/help/toolbox/signal/fftn.m +%%DATADIR%%/help/toolbox/signal/fftshift.m +%%DATADIR%%/help/toolbox/signal/ifftn.m +%%DATADIR%%/help/toolbox/signal/ifftshift.m +%%DATADIR%%/help/toolbox/sparse/speye.m +%%DATADIR%%/help/toolbox/sparse/sprand.m +%%DATADIR%%/help/toolbox/sparse/sprandn.m +%%DATADIR%%/help/toolbox/sparse/spy.m +%%DATADIR%%/help/toolbox/stat/std.m +%%DATADIR%%/help/toolbox/string/cellstr.m +%%DATADIR%%/help/toolbox/string/deblank.m +%%DATADIR%%/help/toolbox/string/strcmp.m +%%DATADIR%%/help/toolbox/string/strfind.m +%%DATADIR%%/help/toolbox/string/strncmp.m +%%DATADIR%%/help/toolbox/string/strrep.m +%%DATADIR%%/help/toolbox/string/strtrim.m +%%DATADIR%%/help/toolbox/time/etime.m +%%DATADIR%%/help/toolbox/trig/acosd.m +%%DATADIR%%/help/toolbox/trig/acosh.m +%%DATADIR%%/help/toolbox/trig/acot.m +%%DATADIR%%/help/toolbox/trig/acotd.m +%%DATADIR%%/help/toolbox/trig/acoth.m +%%DATADIR%%/help/toolbox/trig/acsc.m +%%DATADIR%%/help/toolbox/trig/acscd.m +%%DATADIR%%/help/toolbox/trig/acsch.m +%%DATADIR%%/help/toolbox/trig/angle.m +%%DATADIR%%/help/toolbox/trig/asec.m +%%DATADIR%%/help/toolbox/trig/asecd.m +%%DATADIR%%/help/toolbox/trig/asech.m +%%DATADIR%%/help/toolbox/trig/asind.m +%%DATADIR%%/help/toolbox/trig/asinh.m +%%DATADIR%%/help/toolbox/trig/atand.m +%%DATADIR%%/help/toolbox/trig/atanh.m +%%DATADIR%%/help/toolbox/trig/cosd.m +%%DATADIR%%/help/toolbox/trig/cosh.m +%%DATADIR%%/help/toolbox/trig/cotd.m +%%DATADIR%%/help/toolbox/trig/coth.m +%%DATADIR%%/help/toolbox/trig/cscd.m +%%DATADIR%%/help/toolbox/trig/csch.m +%%DATADIR%%/help/toolbox/trig/deg2rad.m +%%DATADIR%%/help/toolbox/trig/rad2deg.m +%%DATADIR%%/help/toolbox/trig/secd.m +%%DATADIR%%/help/toolbox/trig/sech.m +%%DATADIR%%/help/toolbox/trig/sind.m +%%DATADIR%%/help/toolbox/trig/sinh.m +%%DATADIR%%/help/toolbox/trig/tand.m +%%DATADIR%%/help/toolbox/trig/tanh.m +%%DATADIR%%/help/toolbox/util/addpath.m +%%DATADIR%%/help/toolbox/util/exit.m +%%DATADIR%%/help/toolbox/util/filesep.m +%%DATADIR%%/help/toolbox/util/fullfile.m +%%DATADIR%%/help/toolbox/util/inline_evaluate.m +%%DATADIR%%/help/toolbox/util/path.m +%%DATADIR%%/help/toolbox/util/pathsep.m +%%DATADIR%%/help/toolbox/util/rehash.m +%%DATADIR%%/help/toolbox/util/rescan.m +%%DATADIR%%/toolbox +@dirrm %%DATADIR%%/help/toolbox/util +@dirrm %%DATADIR%%/help/toolbox/trig +@dirrm %%DATADIR%%/help/toolbox/time +@dirrm %%DATADIR%%/help/toolbox/string +@dirrm %%DATADIR%%/help/toolbox/stat +@dirrm %%DATADIR%%/help/toolbox/sparse +@dirrm %%DATADIR%%/help/toolbox/signal +@dirrm %%DATADIR%%/help/toolbox/poly +@dirrm %%DATADIR%%/help/toolbox/numerical +@dirrm %%DATADIR%%/help/toolbox/mpi +@dirrm %%DATADIR%%/help/toolbox/matrix +@dirrm %%DATADIR%%/help/toolbox/io +@dirrm %%DATADIR%%/help/toolbox/help +@dirrm %%DATADIR%%/help/toolbox/graph +@dirrm %%DATADIR%%/help/toolbox/geom +@dirrm %%DATADIR%%/help/toolbox/general +@dirrm %%DATADIR%%/help/toolbox/fitting +@dirrm %%DATADIR%%/help/toolbox/deprecated +@dirrm %%DATADIR%%/help/toolbox/binary +@dirrm %%DATADIR%%/help/toolbox/array +@dirrm %%DATADIR%%/help/toolbox/@inline +@dirrm %%DATADIR%%/help/toolbox +@dirrm %%DATADIR%%/help/text +@dirrm %%DATADIR%%/help/latex +@dirrm %%DATADIR%%/help/html +@dirrm %%DATADIR%%/help @dirrm %%DATADIR%% |