source: trunk/adm/matv7tomatv6.m @ 49

Last change on this file since 49 was 49, checked in by pinsard, 15 years ago

add tool to convert mat-binary v7 files t v6

File size: 767 bytes
Line 
1%MATV7TOMATV6 conversion of mat-v7 reference file
2%
3
4%+
5% module
6% ========
7%
8% ``matv7tomatv6``
9%
10% DESCRIPTION
11% ===========
12%
13% matlab 6 can read reference file because of mat-v7 binary format
14%
15% EXAMPLES
16% ========
17%
18% ::
19%
20% > matv7tov6
21%
22% TODO
23% ====
24%
25% consolidation
26%
27% EVOLUTIONS
28% ==========
29%
30% $Id$
31%
32% - fplod 2009-09-23T07:58:15Z aedon.locean-ipsl.upmc.fr (Darwin)
33%
34%   * creation
35%-
36%
37fullfilename='../DONNEES/lsmask_tropatl_PacandMedblancs.mat';
38fullfilename_v6='../DONNEES/lsmask_tropatl_PacandMedblancs.v6.mat';
39load(fullfilename);
40save('-v6',fullfilename_v6,'lon','lat','mask');
41
42fullfilename='../DONNEES/MAT/skt.mon.tropatl.mat';
43fullfilename_v6='../DONNEES/MAT/skt.mon.tropatl.v6.mat';
44load(fullfilename);
45save('-v6',fullfilename_v6,'tab');
Note: See TracBrowser for help on using the repository browser.