clear all; % this program plots the correlation map A=load('corr_map_cohesinall_100_matlab.out'); R=zeros(2249,2249); for i=1:5058001 R(A(i,1),A(i,2))=A(i,3); end %-------------------------------------------------------------- figure (1) contourf(R) xlabel('') ylabel('') colorbar grid