phibar_D2
PURPOSE 
log-penalty barrier function, t can be a scalar/vector/...
SYNOPSIS 
function [ret] = phibar_D2(obj,t)
DESCRIPTION 
CROSS-REFERENCE INFORMATION 
This function calls:
This function is called by:
- penlab PenLab (Pennon Laboratory for Matlab, previously PennonM)
SOURCE CODE 
0001 function [ret] = phibar_D2(obj,t)
0002
0003
0004
0005 ret=t;
0006 ind = find(t<0);
0007 invind = find(t>=0);
0008 ret(invind) = Inf;
0009 ret(ind) = 1./t(ind).^2;
0010 return;
0011
Generated on Mon 26-Aug-2019 10:22:08 by m2html © 2005