Ignore:
Timestamp:
01/06/09 10:53:18 (16 years ago)
Author:
pinsard
Message:

remove trailing blanks, split lines with multiple statements

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/SIMULS_IRCAAM/eof_olr_ircaam_1030_ctl_clim.m

    r10 r16  
    1 %%%%%%%%%%%%%%% FICHIER OLR 
    2 % ouverture / lecture du fichier 
    3 clear 
    4 close all 
     1% 
     2 
     3clear; 
     4close all; 
    55 
    66fid=fopen('olrf10-30_clim_sst.80.dat','r'); 
     
    88v=fread(fid,siz,'float'); 
    99fclose(fid); 
    10 olr=reshape(v,360,3538); clear v; 
     10olr=reshape(v,360,3538); 
     11clear v; 
    1112 
    12   
    1313% calcul de la matrice de covariance 
    1414vaudou=zeros(360,360); 
     
    1616    for b=1:360; 
    1717      clear e d covaria; 
    18       e=olr(b,:);  
    19       d=olr(a,:);  
     18      e=olr(b,:); 
     19      d=olr(a,:); 
    2020      covaria=cov(e,d); 
    2121      vaudou(a,b)=covaria(2,1); 
     
    2626[C,L]=eig(vaudou); 
    2727 
    28 % spatialisation du premier mode 
    29  
    30  
    31 % serie temporelle de la premiere vP 
    32  
    3328delete('eof_1030_ircaam_ctl_clim.mat'); 
    3429save('eof_1030_ircaam_ctl_clim.mat','C','L','olr') 
Note: See TracChangeset for help on using the changeset viewer.