Matlab EOF Analysis
Matlab–EOF Analysis Author: The Eighth Galaxy – Shitou Ren Contact Email: [email protected] Data: nc data Read Data %% EOF Analysis clc;clear;close all %% Read Precipitation Related Data datadir = 'E:\prep\'; % Loop to read precipitation data filelist=dir([datadir,'*.nc']); for i = 1:129 ncid =[datadir,filelist(i).name]; time(:,i)=ncread(ncid,'time'); precip(:,:,i)=ncread(ncid,'precip'); end path = [datadir,filelist(1).name]; ncdisp(path) mlat = double(ncread(path,'latitude')); mlon = … Read more