Code covered by the BSD License
function r=compute_range(ranges,list) r=[0,1]; for id=1:length(list) l=r(2)-r(1); r(2)=r(1)+l*ranges(list(id),2); r(1)=r(1)+l*ranges(list(id),1); end
Contact us