1function MAP=map_feasblock(E1,E2,E3,G2,OPT)
2if E2==2*E1^2 %exponential
3 MAP=map_scale({[-1,0;0,-1],[0.5,0.5;0.5,0.5]},E1);
7% map_feasblock(E1,E2,E3,G2,OPT) - fits the most similar
17 warning('E2 failure (SCV=1), setting SCV=1.001');
18 E2=(1+kpcfit_tol)*E1^2;
21 warning('E3 failure, setting E3=(3/2+1e-6)*E2^2/E1');
22 E3=(3/2+kpcfit_tol)*E2^2/E1;
25MAP=map_block(E1,E2,E3,G2);