search for: 5,7

Displaying 20 results from an estimated 421 matches for "5,7".

Did you mean: 3,7
2017 Aug 11
4
[PATCH] drm/nouveau: Document nouveau support for Tegra in DRIVER_DESC
...ed with the main GeForce GPU families. Signed-off-by: Rhys Kidd <rhyskidd at gmail.com> --- drivers/gpu/drm/nouveau/nouveau_drv.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/gpu/drm/nouveau/nouveau_drv.h b/drivers/gpu/drm/nouveau/nouveau_drv.h index 822fe1d4d35e..fbe42ec0a5f1 100644 --- a/drivers/gpu/drm/nouveau/nouveau_drv.h +++ b/drivers/gpu/drm/nouveau/nouveau_drv.h @@ -5,7 +5,7 @@ #define DRIVER_EMAIL "nouveau at lists.freedesktop.org" #define DRIVER_NAME "nouveau" -#define DRIVER_DESC "nVidia Riva/TNT/GeForce/Quadro/Te...
2015 May 14
3
comportamiento de data.table al hacer calculos por grupos
.... Estoy haciendo calculos por grupos con data,table. Tengo un archivo (zp.res) con tres columnas que clasifican los datos (sol, con, dia) y una columna de datos numericos (media), de la siguiente forma: sol con dia media 1: con 0 1 -22.6 2: con 0 1 -36.6 3: con 0 1 -35.6 y quiero calcular el promedio de "media" (la col 4) agrupando con las variables sol,con,dia. Lo hago de la siguiente forma: med <- zp.res[, mean(media), by="sol,dia,con"] cuando reviso "med" esta todo bien, se han calculado las medias y el objeto tiene solo l...
2010 Jun 25
2
ask a question about list in R
my list al is as below: al=list(c(2,3),5,7) > al [[1]] [1] 2 3 [[2]] [1] 5 [[3]] [1] 7 and I check the second component, its element is 5, then I remove this, now my al is: al[[2]][al[[2]]!=5]->al[[2]] > al [[1]] [1] 2 3 [[2]] numeric(0) [[3]] [1] 7 The Question is, how I can get the new list without the second component,...
2007 Aug 29
2
a new-bie question about obtaining certain value from the print out
Hi everyone, I am quite new to R. my command is t.test(c(1:5,7:11), y=c(1:10),alternative = c("two.sided"), paired = TRUE) The output is Paired t-test data: c(1:5, 7:11) and c(1:10) t = 3, df = 9, p-value = 0.01496 alternative hypothesis: true difference in means is not equal to 0 95 percent confidence interval: 0.1229738 0.8770262 sam...
2020 Jun 18
1
[PATCH] Kbuild for klibc and nfsmount: fix multiple definitions
-fcommon is not default anymore, with GCC 10 you get the following failure without it: KLIBCLD usr/klibc/libc.so ppc-linux-ld: usr/klibc/globals.o:/root/packages/klibc-2.0.7/usr/klibc/../include/unistd.h:15: multiple definition of `environ'; usr/klibc/__shared_init.o:/root/ldb_base/ofl/packages/klibc-2.0.7/usr/klibc/libc_init.c:42: first defined here ppc-linux-ld: usr/klibc/sbrk.o:(.sbss+0x0): multiple definition of `__current_brk'; usr/klibc/brk.o:(.sbss+0x0): first defined here ppc-linux-ld:...
2007 Oct 12
1
[PATCH] little typo in news file
Hi, patch inlined for reowkr -> rework conversion in 0.5.3 NEWS entry. cheers, riccardo diff --git a/NEWS b/NEWS index 10b69f7..245c336 100644 --- a/NEWS +++ b/NEWS @@ -5,7 +5,7 @@ Lots of new built-in objects and code cleanup are the highlights of yet another Swfdec release. And a little less condensed: - rework of what APIs call into the script engi...
2006 Jan 05
3
TE110p and pri_cpe signalling not recognized
...compile and install went very well. I'm using this on FC4 and I compile with linux26 as well checked I on the udev configs. zttool and ztcfg both indicate that the card is ready. But when I try to "load chan_zap.so" then I get the following Unable to load module chan_zap.so Jan 5 21:43:33 ERROR[6808]: chan_zap.c:10546 setup_zap: Unknown signalling method 'pri_cpe' Jan 5 21:43:33 ERROR[6808]: chan_zap.c:10171 setup_zap: Signalling must be specified before any channels are. Jan 5 21:43:33 WARNING[6808]: loader.c:414 __load_resource: chan_zap.so: load_module failed,...
2009 Jul 30
1
ask help about boxplot , different list variation into the tick of x-axis?
...ommand "boxplot(bjavee~yearname)",it is wrong with the error information " model.frame.default(formula = bjavee ~ yearname) : variation 'bjavee' list is wrong". I want to add the yearname as the x-axis tick. And yearname is a array with the length 12,while bjavee is a 5*12 matrix. How could I get what I want? thanks. bjerr1<-bjerrdata$tyerr[1:bjyearnum[2]] bjerr2<-bjerrdata$tyerr[(bjyearnum[2]+1):bjyearnum[3]] bjerr3<-bjerrdata$tyerr[(bjyearnum[3]+1):bjyearnum[4]] bjerr4<-bjerrdata$tyerr[(bjyearnum[4]+1):bjyearnum[5]] bjerr5<-bjerrdata$tyerr[(bjyea...
2018 May 15
2
centos-qemu-ev repository not work for x86_64 arch on CentOS 7.5
Hello, Sandro! On 11.05.2018 12:19, Sandro Bonazzola wrote: > Sadly, the new qemu-kvm-ev we prepared for CentOS 7.5 didn't get released ( > https://bugs.centos.org/view.php?id=14764) but the new build is ready. After installing CentOS 7.5 and installing package qemu-kvm-ev I can't install KVM on x86_64 arc...
2010 Jun 28
2
ask a question about list in R project
my list al is as below: mylist=list(c(2,3),5,7) > mylist [[1]] [1] 2 3 [[2]] [1] 5 [[3]] [1] 7 How could I get the following FOUR lists: First one [[1]] [1] 3 [[2]] [1] 5 [[3]] [1] 7 Second one [[1]] [1] 2 [[2]] [1] 5 [[3]] [1] 7 Third One [[1]] [1] 2 3 [[2]] [1] 7 Last one [[1]] [1] 2 3 [[2]] [1] 5 Do I have to use 'for&...
2005 Oct 27
2
Critical Bug in type conversions: as.integer, trunc, ... (PR#8255)
Full_Name: Grischa T?dt Version: 2.1.1 OS: windows XP Submission from: (NULL) (192.108.25.32) I have a strange behaviour in R, looks like type conversions are messed up. To reproduce: expected: > typeof(3) [1] "double" > as.integer(3) [1] 3 !!!! strange: > typeof((0.3/0.1)) [1] "double" > as.integer((0.3/0.1)) [1] 2 also for trunc: >trunc(c(5,7...
2011 Jul 29
2
change pch in 3dplot, export graph
...the graph could be exported to? Any suggestions would be very much appreciated. Thanks in advance, library(rgl, pos=4) plot3d(subset(Dataset$PC1, source=="ashe_amphib"), subset(Dataset$PC2, source=="ashe_amphib"), subset(Dataset$PC3, source=="ashe_amphib"), xlim=c(-5,7), ylim=c(-5,3), zlim=c(-4,7), xlab="PC1", ylab="PC2", zlab="PC3", col=1, pch=1) points3d(subset(Dataset$PC1, source=="ashe_ZAS"), subset(Dataset$PC2, source=="ashe_ZAS"), subset(Dataset$PC3, source=="ashe_ZAS"), col=2, pch=2) points3d(su...
2006 Mar 20
2
Who is using the jitter buffer?
...s in one UDP packet. While I'm not > sure, I do believe the jitter buffer would probably benefit from > knowing that packets always come in pairs. I would think you might also do better if you interleaved packets when you did this: instead of sending packets like this: [0,1] [2,3] [4,5] [6,7], send them like this: [0,2] [1,3] [4,6] [5,7] In this way, if one packet is dropped you don't lose two consecutive voice frames. -SteveK
2018 May 15
3
centos-qemu-ev repository not work for x86_64 arch on CentOS 7.5
2018-05-15 12:38 GMT+02:00 Gena Makhomed <gmm at csdoc.com>: > Hello, Sandro! > > On 15.05.2018 13:24, Gena Makhomed wrote: > > failure: repodata/repomd.xml from centos-qemu-ev: [Errno 256] No more >> mirrors to try. >> http://mirror.centos.org/altarch/7/virt/x86_64/kvm-co...
2010 Jun 30
2
plain text in Chinese can not be set
...n the following code, the font to use for Latin text is correct. I also tested postscript(), and it did as what was expected. Any suggestions? Thanks in advance! Regards, Jinsong ### the code to reproduce my question ### pdf("test_0.pdf", fonts = c("GB1")) plot(1:10) text(5,4, "\u4F60\u597D", family="GB1", font = 0) ## bold text(5,5, "is 'hello' in Chinese", font = 0) ## normal dev.off() pdf("test_1.pdf", fonts = c("GB1")) plot(1:10) text(5,4, "\u4F60\u597D", family="GB1", font = 1) ## bold...
2001 Sep 10
1
data format for ppinit
After installation of R into VineLinux2.1.5, I started to enjoy statistics following some instruction, and found it very useful. One of my main purpose to use R is to try spatial statistics. Since library named "spatial" has already installed, I just tried ... > library(spatial) > towns <- ppinit(test.dat) ------- test....
2006 Nov 14
1
alphachannel on pdf-device
...of my problem: ----------------------------------------------- pdf(paste("test_alpha_rgb.pdf",sep=""), version="1.4") plot(1:8, 1:8, type="n", xlab="", ylab="") lines(c(1,8), c(1,8), type="l", col="lightblue", lwd=15) # polygon with alphachannel=64 (transparency 40%) polygon(c(5,2,2,5,5), c(2,2,5,5,2), col=rgb(255,192,203,64, max = 255), border=NA) text(4,2, "transparency 40%") # rectangle with alphachannel=255 (no transparency) goldenrod1 <- rgb(255,193,37,255, names=c("goldenrod1"),...
2018 Jan 03
2
[PATCH] [PATCH] virtio: make VIRTIO a menuconfig to ease disabling it all
...v2: add "default y" to avoid breaking existing configs Signed-off-by: Vincent Legoll <vincent.legoll at gmail.com> --- drivers/virtio/Kconfig | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/drivers/virtio/Kconfig b/drivers/virtio/Kconfig index cff773f15b7e..290a1875e1d3 100644 --- a/drivers/virtio/Kconfig +++ b/drivers/virtio/Kconfig @@ -5,7 +5,11 @@ config VIRTIO bus, such as CONFIG_VIRTIO_PCI, CONFIG_VIRTIO_MMIO, CONFIG_RPMSG or CONFIG_S390_GUEST. -menu "Virtio drivers" +menuconfig VIRTIO_MENU + bool "Virtio drivers&qu...
2018 Jan 03
2
[PATCH] [PATCH] virtio: make VIRTIO a menuconfig to ease disabling it all
...v2: add "default y" to avoid breaking existing configs Signed-off-by: Vincent Legoll <vincent.legoll at gmail.com> --- drivers/virtio/Kconfig | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/drivers/virtio/Kconfig b/drivers/virtio/Kconfig index cff773f15b7e..290a1875e1d3 100644 --- a/drivers/virtio/Kconfig +++ b/drivers/virtio/Kconfig @@ -5,7 +5,11 @@ config VIRTIO bus, such as CONFIG_VIRTIO_PCI, CONFIG_VIRTIO_MMIO, CONFIG_RPMSG or CONFIG_S390_GUEST. -menu "Virtio drivers" +menuconfig VIRTIO_MENU + bool "Virtio drivers&qu...
2017 Dec 09
3
[PATCH] virtio: make VIRTIO a menuconfig to ease disabling it all
...the submenu. It will also enable one to see that en/dis-abled state from the outside menu. This is only intended to change menuconfig UI, not change the config dependencies. Signed-off-by: Vincent Legoll <vincent.legoll at gmail.com> --- drivers/virtio/Kconfig | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/drivers/virtio/Kconfig b/drivers/virtio/Kconfig index cff773f15b7e..d485a63a8233 100644 --- a/drivers/virtio/Kconfig +++ b/drivers/virtio/Kconfig @@ -5,7 +5,10 @@ config VIRTIO bus, such as CONFIG_VIRTIO_PCI, CONFIG_VIRTIO_MMIO, CONFIG_RPMSG or CO...