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_30100_tr.m

    r10 r16  
    1 %%%%%%%%%%%%%%% FICHIER OLR 
    2 % ouverture / lecture du fichier 
    3 clear 
    4 close all 
     1% 
     2 
     3clear; 
     4close all; 
    55 
    66fid=fopen('olrf30-100_tr.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 
    1213% calcul de la matrice de covariance 
     
    1516    for b=1:360; 
    1617      clear e d covaria; 
    17       e=olr(b,:);  
    18       d=olr(a,:);  
     18      e=olr(b,:); 
     19      d=olr(a,:); 
    1920      covaria=cov(e,d); 
    2021      vaudou(a,b)=covaria(2,1); 
     
    2526[C,L]=eig(vaudou); 
    2627 
    27 % spatialisation du premier mode 
    28  
    29  
    30 % serie temporelle de la premiere vP 
    31  
    3228delete('eof_30100_ircaam_tr.mat'); 
    3329save('eof_30100_ircaam_tr.mat','C','L','olr') 
Note: See TracChangeset for help on using the changeset viewer.