Scilab Function
Last update : 1/5/2008

cca_ll - The Lasry-Lions double envelope approximation

Calling Sequence

L = cca_ll(X,Y,S,mu,lambda,algo)

Parameters

Description

Compute numerically the Lasry-Lions double envelope of a set of planar points (X(i),Y(i)) at slopes S, i.e.,

    
                 h[mu,lambda]=-F[mu](-F[lambda](x)).
                 
It has a complexity which is dependent on the type of algorithm used to compute the Moreau Envelope.

Examples

    X=[-2:0.01:2]';
    Y=abs(abs(X)-1);
    S=X;
    mu=0.7;
    lambda=0.4;

    scf(0);clf;
    L = cca_ll(X,Y,S,mu,lambda,me_direct);
    plot2d([abs(abs(X)-1),L]); 
    xtitle("Lasry Lions double envelope");
  

See Also

me_direct,  me_llt,  me_nep,  me_pe,  

Author

Yves Lucet, University of British Columbia, BC, Canada