You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

9 lines
202 B

function plot_compliance_distri()
load top3d_case2_p1.mat
figure(1)
set(gcf,'position',[100 650 300 300])
cc = squeeze(compliance);
colormap(1-gray);
imagesc(cc);
axis equal; axis tight; axis off;
end