diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2017-02-20 00:05:29 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2017-02-20 00:05:29 -0800 |
commit | 8466d8cfa486fb30d1755c4261b781135083787b (patch) | |
tree | c8c12c67246f543c3cc4f64d1c07e003cb1d45ae /matfile.txi | |
parent | 87b82b5822ca54228cfa6df29be3ad9d4bc47d16 (diff) | |
download | slib-8466d8cfa486fb30d1755c4261b781135083787b.tar.gz slib-8466d8cfa486fb30d1755c4261b781135083787b.zip |
Import Upstream version 3a1upstream/3a1
Diffstat (limited to 'matfile.txi')
-rw-r--r-- | matfile.txi | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/matfile.txi b/matfile.txi new file mode 100644 index 0000000..394ddbd --- /dev/null +++ b/matfile.txi @@ -0,0 +1,31 @@ +@code{(require 'matfile)} +@ftindex matfile +@ftindex matlab + +@uref{http://www.mathworks.com/access/helpdesk/help/pdf_doc/matlab/matfile_format.pdf} + +@noindent +This package reads MAT-File Format version 4 (MATLAB) binary data +files. MAT-files written from big-endian or little-endian computers +having IEEE format numbers are currently supported. Support for files +written from VAX or Cray machines could also be added. + +@noindent +The numeric and text matrix types handled; support for @dfn{sparse} +@cindex sparse +matrices awaits a sample file. + + +@defun matfile:read filename +@var{filename} should be a string naming an existing file containing a +MATLAB Version 4 MAT-File. The @code{matfile:read} procedure reads matrices from the +file and returns a list of the results; a list of the name string and +array for each matrix. +@end defun + +@defun matfile:load filename +@var{filename} should be a string naming an existing file containing a +MATLAB Version 4 MAT-File. The @code{matfile:load} procedure reads matrices from the +file and defines the @code{string-ci->symbol} for each matrix to its +corresponding array. @code{matfile:load} returns a list of the symbols defined. +@end defun |