1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
|
# $Id: loadxsil.pod 1195 2006-12-18 13:00:35Z paultcochrane $
=head1 NAME
loadxsil - load simulation data into matlab
=head1 SYNOPSIS
loadxsil('<xsil_file>')
=head1 DESCRIPTION
Utility script bundled with B<xmds>, used to load simulation output data (from
the xsil data file) into matlab, where the results can be presented graphically.
To load data from the xsil file data_file.xsil, enter at the matlab
command prompt:
>> loadxsil('data_file.xsil')
=head1 EXAMPLES
At the matlab command prompt:
>> loadxsil('nlse.xsil')
loads the data contained in I<nlse.xsil> into matlab
=head1 AUTHORS
Written by Paul Cochrane
=head1 BUGS
No known bugs. However, the loadxsil script does not work
in Matlab version 4.0 or below; it can only be used with
Matlab version 5.0 and above. Users with Matlab 4.0 can
use the B<xsil2graphics> utility as a means to import data into
Matlab.
=head1 SEE ALSO
xmds(1), xsil2graphics(1)
http://www.xmds.org
=head1 COPYRIGHT
Copyright (C) 2003-2004
Code contributed by Paul Cochrane
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston,
MA 02111-1307, USA.
|