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.
 
 
 

15 lines
311 B

function vol2 = REinterpVolume()
load('ani_fittingALL_pnorm4.mat')
maxloop=68;
% load('ani_rmin1.5_concurrent_fitting_all.mat')
% maxloop=29;
vol2=zeros(maxloop,1);
for loop=1:maxloop
aPhys=a_log{loop,2};
bPhys=b_log{loop,2};
cPhys=c_log{loop,2};
vol2(loop)=mean(interp_v(aPhys(:),bPhys(:),cPhys(:)));
end
end