standard function for output to bifurcation diagram here |u_1|_infty and |u_1|_L^2, use as template
0001 function out=stanbra(p,u,lam) 0002 % standard function for output to bifurcation diagram 0003 % here |u_1|_infty and |u_1|_L^2, use as template 0004 out=[max(abs(u(1:p.np))); sqrt(triint(u(1:p.np).^2,p.points,p.tria))]; 0005 end