similar to: question

Displaying 20 results from an estimated 2000 matches similar to: "question"

2007 Jan 01
2
matrix size
Hello everyone Could anybody tell me how to set the following matrix? n2<-matrix(nrow=10185,ncol=10185,seq(0,0,length=103734225)) R answer was Error: cannot allocate vector of size 810423 Kb Are there any solution? I tried to increase the memory size but it didn't work G This message has been scanned for viruses by TRENDMICRO,\ an...{{dropped}}
2005 Nov 09
1
Query
Dear all, My name is Guillermo I'm trying to write a short program to find all the possible combination in fitting an ARIMA Model. My script is the following: n=rnorm(100)+5 Aux.M=matrix(NA,nrow=100,ncol=2) L=1 for(i in 0:2) {for(j in 0:2) {for(k in 0:2) Aux.M[L,2]=arima(n,order=c(i,j,k),include.mean=TRUE)$aic x1=paste("AR=",i,sep=" ")
2006 May 16
1
lm summary
Dear all, Is there anybody who can help me to avoid scientific number in the summary of an lm model? Here there is an example of a usual output of the lm model. Thank you! Guillermo Example summary(lm(promiscuity.Index~allK)) Call: lm(formula = promiscuity.Index ~ allK) Residuals: Min 1Q Median 3Q Max -1.67094 -0.13126 0.06703 0.19913 0.40673 Coefficients:
2018 Dec 20
2
OfficeScan deletes Rterm as malware
I'm not sure if the problem is actually with R but thought I should report this anyway. After Peter's email regarding the R 3.5.2 release today, I installed the Windows version right away (directly from CRAN and not from a mirror). Unfortunately, my institute's AV sofware TrendMicro OfficeScan 12.0.5147 Service Pack 1 stops and deletes Rterm.exe when running Rcmd.exe INSTALL with
2010 Jul 16
2
Creating functions of "many" arguments
Dear users, My apologies for the simple question. I'd like to create a function where the number of arguments is as big as the size of my data set. Supose I have n observations in my data, how can I write a function like fun <- function (x1,x2,....,xn) {x1*x2*.......*xn} Thanks in advance for your help! Axel. [[alternative HTML version deleted]]
2006 Dec 25
6
Yum uses too much resources
Hi all, When I do a simple string search with Yum (ex. yum search *hwinfo*) my laptop suffers high slowness. If I open another shell-tab and execute top command, it shows me an extensive use of hardware resources from Yum (20-25% RAM and 70-85% CPU). If in the same time I'm using Firefox browser the performance goes down too much and even it seems the box it's freezed. The box become
2013 Apr 06
2
[PATCH -next] virtio_console: make local symbols static
From: Wei Yongjun <yongjun_wei at trendmicro.com.cn> Those symbols only used within this file, and should be static. Signed-off-by: Wei Yongjun <yongjun_wei at trendmicro.com.cn> --- drivers/char/virtio_console.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/char/virtio_console.c b/drivers/char/virtio_console.c index 13ad9b1..f73ad64 100644 ---
2013 Apr 06
2
[PATCH -next] virtio_console: make local symbols static
From: Wei Yongjun <yongjun_wei at trendmicro.com.cn> Those symbols only used within this file, and should be static. Signed-off-by: Wei Yongjun <yongjun_wei at trendmicro.com.cn> --- drivers/char/virtio_console.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/char/virtio_console.c b/drivers/char/virtio_console.c index 13ad9b1..f73ad64 100644 ---
2013 May 31
2
[PATCH] xen-pciback: fix error return code in pcistub_irq_handler_switch()
From: Wei Yongjun <yongjun_wei at trendmicro.com.cn> Fix to return -ENOENT in the pcistub_device_find() and pci_get_drvdata() error handling case instead of 0(overwrite to 0 by str_to_slot()), as done elsewhere in this function. Signed-off-by: Wei Yongjun <yongjun_wei at trendmicro.com.cn> --- drivers/xen/xen-pciback/pci_stub.c | 10 +++++++--- 1 file changed, 7 insertions(+), 3
2013 May 31
2
[PATCH] xen-pciback: fix error return code in pcistub_irq_handler_switch()
From: Wei Yongjun <yongjun_wei at trendmicro.com.cn> Fix to return -ENOENT in the pcistub_device_find() and pci_get_drvdata() error handling case instead of 0(overwrite to 0 by str_to_slot()), as done elsewhere in this function. Signed-off-by: Wei Yongjun <yongjun_wei at trendmicro.com.cn> --- drivers/xen/xen-pciback/pci_stub.c | 10 +++++++--- 1 file changed, 7 insertions(+), 3
2010 Oct 20
8
anti-spam+anti-malware suggestions
Hello people, I am using now qmail in cluster with LDAP + Interscan Messaging Security Suite from Trendmicro. I need to develop a new solution with: - postfix - dovecot - anti-spam - anti-malware. I am thankful any help or suggestion for anti-spam and anti-malware. Thanks in advance! -- :) cumprimentos ---------------------- Jos? Lu?s Faria Network Eng./Administrador de
2009 Aug 26
3
changing equal values on matrix by same random number
Dear all, I have about 30,000 matrix (512x512), with values from 1 to N. Each value on a matrix represent a habitat patch on my matrix (i.e. my landscape). Non-habitat are stored as ZERO. No I need to change each 1-to-N values for the same random number. Just supose my matrix is: mymat<-matrix(c(1,1,1,0,0,0,0,0,0,0,0, 0,0,0,0,2,2,2,0,0,0,0, 0,0,0,0,2,2,2,0,0,0,0, 3,3,0,0,0,0,0,0,0,4,4,
2005 May 03
2
Problem with Windows XP
Helo, I've a problem with a network of XP Pc's and a Samba Server. The users logs in their homes directories, and later, when they save their files a message arises saying: "the resource is not abailable". If they close the XP session and open again, normaly, they can access to their homes. In another network of Windows 98 PCs, and with the same smb.conf this not occur. I
2012 Nov 12
2
[PATCH -next] virtio: balloon: fix missing unlock on error in fill_balloon()
From: Wei Yongjun <yongjun_wei at trendmicro.com.cn> Add the missing unlock before return from function fill_balloon() in the error handling case. Introduced by 9864a8(virtio_balloon: introduce migration primitives to balloon pages) dpatch engine is used to auto generate this patch. (https://github.com/weiyj/dpatch) Signed-off-by: Wei Yongjun <yongjun_wei at trendmicro.com.cn> ---
2012 Nov 12
2
[PATCH -next] virtio: balloon: fix missing unlock on error in fill_balloon()
From: Wei Yongjun <yongjun_wei at trendmicro.com.cn> Add the missing unlock before return from function fill_balloon() in the error handling case. Introduced by 9864a8(virtio_balloon: introduce migration primitives to balloon pages) dpatch engine is used to auto generate this patch. (https://github.com/weiyj/dpatch) Signed-off-by: Wei Yongjun <yongjun_wei at trendmicro.com.cn> ---
2010 Sep 28
1
samba version to use on CentOS?
I see via yum that there is "samba" and there is "samba3x" available for CentOS (my boxes are hooked to the main CentOS repo, Fedora EPEL, and RPMFORGE). 'samba' is 3.0.33 'samba3x' is 3.3.8 Is there any down-side to upgrading to 'samba3x' and running 3.3.8 instead of 3.0.33? I'm assuming that, in general, I should be running the latest
2014 Mar 24
2
Problem with web services
Hey oh i'm using one Ubuntu 12.04, and i set up a radio server automatized with airtime. The problem is, even i don't have any problem checking the airtime site or the icecast web service by my web browser, when i install my radio online player, which is basicaly a .html page with javascript & html language inside, the icecast web service can't find it, the same setup i use it on
2010 Sep 28
1
using include directives for shares?
From the smb.conf manpage, it says that an 'include <file>' will include that file into smb.conf as if it were typed in place. Yet, I have a setup where: /etc/samba/smb.conf contains: [global] <various global parameters> include /etc/samba/smb.conf.local and then /etc/samba/smb.conf.local contains my share definitions. I'm doing it
2010 Oct 06
4
loop in R
Dear all, I need to do a loop in R, but I am not sure the software is generating "n" times the variables I request differently. When I ask to print the last matrix created, I just can see the loop for n=1. To be more precise, supose I need to simulate 10 times one variable and I want to fit the 10 variables simulated in a matrix. I dont really know what I am doing wrong, but I just
2005 Jul 06
4
problem with iax2 and 2 peers behind nat
Hi all, i have a problem with 2 peers conecting to an asterisk machine, both are conected behind nat without any port mapping in the router, and the * is conected behind other nat with the port 4569 mapped to it address, the problem is: when a peer register to the asterisk the other cant register and viceversa, only gets registration the first one, im using firefly and a hardphone from wuchuan,