Re: [Scilab-users] Surface smoothing in Scilab, immune to outliers

2013-03-05 Thread Calixte Denizet
[mailto:users-boun...@lists.scilab.org] On Behalf Of Calixte Denizet Sent: Monday, March 04, 2013 4:01 PM To: users@lists.scilab.org Subject: Re: [Scilab-users] Surface smoothing in Scilab, immune to outliers Hi Rafael, You can try to use lsq_splin along the axes x and y. It seems to work

Re: [Scilab-users] Surface smoothing in Scilab, immune to outliers

2013-03-04 Thread Dang, Christophe
Hello, De la part de Rafael Guerra Envoyé : lundi 4 mars 2013 04:37 Does somebody know if there are Scilab functions [...] that smooths experimental data z=f(x,y) and is immune to strong outliers. imho, the problem with smoothing and outliers is that the definition of a outlier depends on

Re: [Scilab-users] Surface smoothing in Scilab, immune to outliers

2013-03-04 Thread Stéphane Mottelet
Hello, Replacing the squared L2 norm by the L1 norm in the linear regression gives a good robustness to outliers (cf. Donoho and al. papers). The problem is then non differentiable but you can implement it by iteratively reweighting the classical L2 method (IRLS method), or by writing an

Re: [Scilab-users] Surface smoothing in Scilab, immune to outliers

2013-03-04 Thread Rafael Guerra
. Regards, Rafael -Original Message- From: users-boun...@lists.scilab.org [mailto:users-boun...@lists.scilab.org] On Behalf Of Stéphane Mottelet Sent: Monday, March 04, 2013 10:14 AM To: users@lists.scilab.org Subject: Re: [Scilab-users] Surface smoothing in Scilab, immune to outliers

Re: [Scilab-users] Surface smoothing in Scilab, immune to outliers

2013-03-04 Thread Stéphane Mottelet
smoothing in Scilab, immune to outliers Hello, Replacing the squared L2 norm by the L1 norm in the linear regression gives a good robustness to outliers (cf. Donoho and al. papers). The problem is then non differentiable but you can implement it by iteratively reweighting the classical L2 method (IRLS

Re: [Scilab-users] Surface smoothing in Scilab, immune to outliers

2013-03-04 Thread Rafael Guerra
...@lists.scilab.org [mailto:users-boun...@lists.scilab.org] On Behalf Of Stéphane Mottelet Sent: Monday, March 04, 2013 3:06 PM To: users@lists.scilab.org Subject: Re: [Scilab-users] Surface smoothing in Scilab, immune to outliers Hello, I have written a little script making the comparison between L1

Re: [Scilab-users] Surface smoothing in Scilab, immune to outliers

2013-03-04 Thread Rafael Guerra
...@lists.scilab.org] On Behalf Of Calixte Denizet Sent: Monday, March 04, 2013 4:01 PM To: users@lists.scilab.org Subject: Re: [Scilab-users] Surface smoothing in Scilab, immune to outliers Hi Rafael, You can try to use lsq_splin along the axes x and y. It seems to work on the following example: x

[Scilab-users] Surface smoothing in Scilab, immune to outliers

2013-03-03 Thread Rafael Guerra
Hello, Does somebody know if there are Scilab functions capable of replacing outliers via some local robust fitting in 2D, i.e., that smooths experimental data z=f(x,y) and is immune to strong outliers. PS: CASCI in Atoms has a lowess function which does this via local robust linear fitting but

Re: [Scilab-users] Surface smoothing in Scilab, immune to outliers

2013-03-03 Thread Samuel Gougeon
Hello Rafael, Le 04/03/2013 04:36, Rafael Guerra a écrit : .../... Does somebody know if there are Scilab functions capable of replacing outliers via some local robust fitting in 2D, i.e., that smooths experimental data z=f(x,y) and is immune to strong outliers. 2D smoothing is frequently