Skip to content
Snippets Groups Projects
Commit aa271360 authored by Lionel GUEZ's avatar Lionel GUEZ
Browse files

Create script

Better than the generic `convert_Matlab_v6.sh` because we do not need
all the variables of file `adt....mat`.
parent 125569d8
No related branches found
No related tags found
No related merge requests found
% This is a Matlab script. This script converts to Matlab v6 format
% some output of TOEddies: what is necessary for the script
% make_graph_from_Matlab_v6.py.
clear
disp('Loading adt_19930101.mat...')
tic
load('adt_19930101.mat', 'ADT', 'Anticyclonic_Cell', 'Cyclonic_Cell', 'X', ...
'Y', 'date_num')
toc
disp('Saving...')
tic
save('adt_19930101_v6', '-v6')
toc
exit
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment