Re: [OctDev] boxplot error

2012-07-12 Thread Juan Pablo Carbajal
On Wed, Jul 11, 2012 at 11:57 AM, Ricardo Santiago Mozos wrote: > Hi there, > > i have just found an error in statistics-1.1.3/boxplot.m > > The error summary: > In this case, outliers_y is empty in line 310 but outliers2_y is not in line > 314 so there is an error as variable "no" is undefined. >

[OctDev] boxplot error

2012-07-11 Thread Ricardo Santiago Mozos
Hi there, i have just found an error in statistics-1.1.3/boxplot.m The error summary: In this case, outliers_y is empty in line 310 but outliers2_y is not in line 314 so there is an error as variable "no" is undefined. The code: errores=[ 0.145000 -4.00 0.604000 0.097500 -4.00

Re: [OctDev] boxplot

2012-03-01 Thread Juan Pablo Carbajal
2012/3/1 Carnë Draug : >> How can one get the latest commits to the statistics package since >> last release (or date range)? > > Try svn log -v -r HEAD:{-mm-dd} I knew I can count with Carnë's prowess Worked like a charm, thanks! -- M. Sc. Juan Pablo Carbajal - PhD Student Universi

Re: [OctDev] boxplot

2012-03-01 Thread Carnë Draug
On 1 March 2012 09:58, Juan Pablo Carbajal wrote: > How can one get the latest commits to the statistics package since > last release (or date range)? Try svn log -v -r HEAD:{-mm-dd} Carnë -- Virtualization & Cloud

Re: [OctDev] boxplot

2012-03-01 Thread Juan Pablo Carbajal
On Wed, Feb 29, 2012 at 8:00 PM, Arno Onken wrote: > On 02/29/2012 07:29 PM, Juan Pablo Carbajal wrote: >> On Wed, Feb 29, 2012 at 5:51 PM, Arno Onken wrote: I added this lines at the end of boxplot.m   % Distribute handles   nq = 1:size(quartile_x,2);   hs.box = h(nq);  

Re: [OctDev] boxplot

2012-02-29 Thread Arno Onken
On 02/29/2012 07:29 PM, Juan Pablo Carbajal wrote: > On Wed, Feb 29, 2012 at 5:51 PM, Arno Onken wrote: >>> I added this lines at the end of boxplot.m >>> % Distribute handles >>> nq = 1:size(quartile_x,2); >>> hs.box = h(nq); >>> nw = nq(end) + [1:2*size(whisker_x,2)]; >>> hs.whisker =

Re: [OctDev] boxplot

2012-02-29 Thread Juan Pablo Carbajal
On Wed, Feb 29, 2012 at 5:51 PM, Arno Onken wrote: >> I added this lines at the end of boxplot.m >>   % Distribute handles >>   nq = 1:size(quartile_x,2); >>   hs.box = h(nq); >>   nw = nq(end) + [1:2*size(whisker_x,2)]; >>   hs.whisker = h(nw); >>   nm = nw(end)+ [1:size(median_x,2)]; >>   hs.med

Re: [OctDev] boxplot

2012-02-29 Thread Arno Onken
> I added this lines at the end of boxplot.m > % Distribute handles > nq = 1:size(quartile_x,2); > hs.box = h(nq); > nw = nq(end) + [1:2*size(whisker_x,2)]; > hs.whisker = h(nw); > nm = nw(end)+ [1:size(median_x,2)]; > hs.median = h(nm); > no = nm(end) + [1:size(outliers_y,2)]; >

[OctDev] boxplot

2012-02-29 Thread Juan Pablo Carbajal
Hi, I added this lines at the end of boxplot.m % Distribute handles nq = 1:size(quartile_x,2); hs.box = h(nq); nw = nq(end) + [1:2*size(whisker_x,2)]; hs.whisker = h(nw); nm = nw(end)+ [1:size(median_x,2)]; hs.median = h(nm); no = nm(end) + [1:size(outliers_y,2)]; hs.outliers = h