search for: mlv

Displaying 20 results from an estimated 23 matches for "mlv".

Did you mean: ml
2002 Mar 18
1
line breaks
...ns, using { or ( to wrap commands on the next line. Usually this is fine, but sometimes R appears confused by line wrappings (more likely of course it is me who is confused). I tried ';' to explictly break the line, but no dice. An example (partial function). inrange _ function(v,Y,s,z,mlv,met){ lower _ mean(v[data$yr==Y])-(var(v[data$yr==Y])^.5) upper _ mean(v[data$yr==Y])+(var(v[data$yr==Y])^.5) ML _ mlv[ML$yr==Y & ML$metcode==met] diff _ 0 if (ML<lower) {diff <- lower-ML; # tried with and without ; v <<- v-diff} } gives: > inrange _ function(v,Y,s,z...
2010 Feb 15
1
[PATCH] drm/nouveau: fix pramdac_table range checking
...rm/nouveau/nouveau_bios.c +770 get_tmds_index_reg(36) error: buffer overflow 'pramdac_table' 4 <= 4 > (...) --- From: Marcin Slusarz <marcin.slusarz at gmail.com> Subject: [PATCH] drm/nouveau: fix pramdac_table range checking get_tmds_index_reg reads some value from stack when mlv happens to be equal to size of pramdac_table array. Fix it. Reported-by: Dan Carpenter <error27 at gmail.com> Signed-off-by: Marcin Slusarz <marcin.slusarz at gmail.com> --- drivers/gpu/drm/nouveau/nouveau_bios.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git...
2009 Aug 18
8
src/ is now warning-free, too
These patches first make src/ warning free, and then turn on the strict warning options. 75 0001-build-suppress-an-ignored-write-return-value-warning.patch 38 0002-build-suppress-an-ignored-dup-return-value-warning.patch 27 0003-generator.ml-suppress-signed-unsigned-compare-warnin.patch 48 0004-build-don-t-perform-arithmetic-on-void-pointers.patch 30
2007 Jan 24
3
System hangs at "Rebooting System" on VIA KM400 chipsets
Hello, We have a number of systems running KM400 chipsets from VIA (Socket A/462). Two different models have produced the same results -- DFI KM400-MLV and MSI KM4M-V. When a /sbin/reboot or /sbin/shutdown -r now is issued, the system does everything you would expect from a reboot, but when it gets to Rebooting System, it hangs and requires a power cycle. The logs do not indicate anything is going wrong. It's not a kernel panic. I'v...
2002 Mar 18
3
function design
I have a, no doubt, simple question. I wish to write a function such that a <- 9 b <- 10 changer _ function(x,y) { if (y>x){ x <<- Y+1}} Of course there are easier ways to accomplish the task above, but I am more interested in how to have the "x <<- Y+1" part of the function to change x in place for purposes of a much larger function. I have been wrestling with
2002 Jun 27
3
plot(..., type="h") w/ origin not at y=0
Is it a way to make plots with vertical lines, like plot(x, y, type="h"), but starting from a different value than y=0. For example, with x=1:3, y=-(1:3), y.orig=-3 : -1 | | y -2 | | | | -3 | | | 1 2 3 x Thanks -- Cyril Humbert -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list --
2002 Oct 17
1
xyplot(y~x, type="l") with missing values (NA)
With the function plot(x, y, type="l") points are not connected when x or y contain a missing value (NA). Is it possible to do the same with the lattice function xyplot() ? For example: library(lattice) x <- c(1, 2, NA, 4, 5) y <- x plot(x, y, type="l") xyplot(y~x, type="l") In the first plot, the point 2 is not connected to the point 4 whereas there are
2012 Feb 21
0
mvabund package: errors using manyglm() and meanvar.plot()
...s fitted values plot can be created for a manyglm object: > tasm.cop.nb <- manyglm(tasm.cop ~ block*treatment, family="negative.binomial") > plot(tasm.cop.nb) The design is unbalanced, I'm not sure whether that is part of the problem. Any help would be highly appreciated, MLV. [[alternative HTML version deleted]]
2002 May 28
1
hitting ^C breaks readline history (PR#1606)
Full_Name: Cyril Humbert Version: 1.5.0 OS: linux Submission from: (NULL) (193.50.159.2) Hitting ^C breaks readline history (when R is stared in an xterm). xterm -e R ^C -> arrow key and history stop working. For example, up-arrow gives "^[[A". ldd ./R.bin [../..] libreadline.so.4.1 => /usr/lib/libreadline.so.4.1 (0x40020000) libncurses.so.5 =>
2004 Jun 22
0
Re: (PR#7005) X11 , plot(...expression(...)): missing parentheses
>>>>> "humbertc" == humbertc <humbertc@univ-mlv.fr> >>>>> on Tue, 22 Jun 2004 13:16:58 +0200 (CEST) writes: humbertc> Full_Name: Cyril Humbert humbertc> Version: 1.9.1 humbertc> OS: Debian GNU/Linux (i386) humbertc> Submission from: (NULL) (193.50.159.2) humbertc> Hello, humbertc&gt...
2004 Jun 22
0
Re: (PR#7005) X11 , plot(...expression(...)): missing parentheses
Martin Maechler wrote: > >>>>> "humbertc" == humbertc <humbertc@univ-mlv.fr> > >>>>> on Tue, 22 Jun 2004 13:16:58 +0200 (CEST) writes: > > humbertc> Full_Name: Cyril Humbert > humbertc> Version: 1.9.1 > humbertc> OS: Debian GNU/Linux (i386) > humbertc> Submission from: (NULL) (193.50.159.2) > >...
2005 Jun 15
0
(PR#7942) extra spaces before imag part when printing complex numbers
...here's less than a line of numbers I find it's more natural to write : > print(c(1+1i, 1-1i, 1+1000i)) [1] 1+1i 1-1i 1+1000i instead of what is actually printed : [1] 1+ 1i 1- 1i 1+1000i Anyway, sorry this "bug" report. > On Wed, 15 Jun 2005 cyril.humbert at univ-mlv.fr wrote: > > >Hello, > > > >When printing sequence of complex numbers, extra spaces > >are sometimes printed between real and imaginary part of > >each number. > > > >For example: > >## R Version 2.1.1 beta (2005-06-13) [Debian unstable, i386] &g...
2005 Feb 03
0
best patch for iptables ratelimiting
According to the F.A.Q. there''s a patch to do ratelimiting: http://etudiant.univ-mlv.fr/~jpetazzo/bytelimit.tgz Going with the thought that this is current..I tried it. I wasn''t able to get it to compile, as support for invert was causing a failure(i think). But i was able to get it to compile when I changed line 73 and my box loaded the module. Anyone know if this wil...
2005 Apr 27
0
(PR#7803) print.data.frame(), wrong column names alignement,
...ng multi-byte characters in its field widths in Fedora Core 3. It is clear from the C99 standard that field widths are in= =20 characters not bytes. This may occur elsewhere. Similarly, double-width characters in e.g. Chinese will not be accounted=20 for. On Thu, 21 Apr 2005 cyril.humbert@univ-mlv.fr wrote: > Hello, > > When a data.frame contains column names with accentued characters > (UTF8 encoded), the alignement of the column names is wrong (extra > spaces inserted). > > For example : ------------------------------------------------ > >> Sys.getlocale() &g...
2002 May 10
4
How to reduce a bandwidth?
2009 Dec 15
2
[PATCH 1/2] drm/nouveau: Kill global state in NvShadowBIOS
--- drivers/gpu/drm/nouveau/nouveau_bios.c | 47 ++++++++++++++----------------- 1 files changed, 21 insertions(+), 26 deletions(-) diff --git a/drivers/gpu/drm/nouveau/nouveau_bios.c b/drivers/gpu/drm/nouveau/nouveau_bios.c index 5eec5ed..04ac564 100644 --- a/drivers/gpu/drm/nouveau/nouveau_bios.c +++ b/drivers/gpu/drm/nouveau/nouveau_bios.c @@ -181,43 +181,42 @@ struct methods { const char
2002 Jun 07
1
Bug list summary (automatic post)
...e: Mon, 18 Feb 2002 18:53:41 +0100 (MET) * PR# 1461 * Subject: make check fails d-p-q-r-tests.R - OpenBSD 3.0 From: Jason Turner <jasont@indigoindustrial.co.nz> Date: Mon, 15 Apr 2002 10:13:36 +0000 * PR# 1606 * Subject: hitting ^C breaks readline history From: Cyril Humbert <humbertc@univ-mlv.fr> Date: Tue, 28 May 2002 12:07:07 +0200 (MET DST) Directory: TooMuchAtOnce none Directory: Windows * PR# 1507 * Subject: copy or save to metafile from graphics device shrinks plots From: drew.tyre@csiro.au Date: Fri, 3 May 2002 04:26:07 +0200 (MET DST) --report on 1.4.0, about copying of...
2002 Jul 07
1
Bug list summary (automatic post)
...e: Mon, 18 Feb 2002 18:53:41 +0100 (MET) * PR# 1461 * Subject: make check fails d-p-q-r-tests.R - OpenBSD 3.0 From: Jason Turner <jasont@indigoindustrial.co.nz> Date: Mon, 15 Apr 2002 10:13:36 +0000 * PR# 1606 * Subject: hitting ^C breaks readline history From: Cyril Humbert <humbertc@univ-mlv.fr> Date: Tue, 28 May 2002 12:07:07 +0200 (MET DST) Directory: TooMuchAtOnce none Directory: Windows * PR# 1711 * Subject: GUI bug From: socrates@mail.ru Date: Thu, 27 Jun 2002 10:30:51 +0200 (MET DST) --A crash that is *very* hard to trigger (after several --minutes of continuous resizing...
2002 Aug 21
1
Bug list summary (automatic post)
...e: Mon, 18 Feb 2002 18:53:41 +0100 (MET) * PR# 1461 * Subject: make check fails d-p-q-r-tests.R - OpenBSD 3.0 From: Jason Turner <jasont@indigoindustrial.co.nz> Date: Mon, 15 Apr 2002 10:13:36 +0000 * PR# 1606 * Subject: hitting ^C breaks readline history From: Cyril Humbert <humbertc@univ-mlv.fr> Date: Tue, 28 May 2002 12:07:07 +0200 (MET DST) Directory: TooMuchAtOnce none Directory: Windows * PR# 1711 * Subject: GUI bug From: socrates@mail.ru Date: Thu, 27 Jun 2002 10:30:51 +0200 (MET DST) --A crash that is *very* hard to trigger (after several --minutes of continuous resizing...
2002 Sep 21
1
Bug list summary (automatic post)
...e: Mon, 18 Feb 2002 18:53:41 +0100 (MET) * PR# 1461 * Subject: make check fails d-p-q-r-tests.R - OpenBSD 3.0 From: Jason Turner <jasont@indigoindustrial.co.nz> Date: Mon, 15 Apr 2002 10:13:36 +0000 * PR# 1606 * Subject: hitting ^C breaks readline history From: Cyril Humbert <humbertc@univ-mlv.fr> Date: Tue, 28 May 2002 12:07:07 +0200 (MET DST) Directory: TooMuchAtOnce none Directory: Windows * PR# 1711 * Subject: GUI bug From: socrates@mail.ru Date: Thu, 27 Jun 2002 10:30:51 +0200 (MET DST) --A crash that is *very* hard to trigger (after several --minutes of continuous resizing...