source: trunk/src/SIMULS_IRCAAM/eof_olr_noaa_annuel_jas_8_28.m @ 91

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

remove CR from CRLF in matlab files

File size: 513 bytes
Line 
1%
2
3clear;
4close all;
5
6fid=fopen('olrf8-28_annuel.dat','r');
7siz=25*17*28;
8v=fread(fid,siz,'float');
9fclose(fid);
10olr=reshape(v,425,28);
11clear v;
12
13% calcul de la matrice de covariance
14vaudou=zeros(425,425);
15for a=1:425;
16    for b=1:425;
17      clear e d covaria;
18      e=olr(b,:);
19      d=olr(a,:);
20      covaria=cov(e,d);
21      vaudou(a,b)=covaria(2,1);
22    end;
23end;
24
25% on diagonalise la matrice de covariance
26[C,L]=eig(vaudou);
27
28delete('eof_noaa_annuel_8_28.mat');
29save('eof_noaa_annuel_8_28.mat','C','L','olr')
Note: See TracBrowser for help on using the repository browser.