Displaying 9 results from an estimated 9 matches similar to: "May i ask a question?"
2004 Oct 17
2
problems in the install microsoft office 2000 with wine
My systems is rh9, I installed the latest wine
(20040914), with a RPM package downloaded from
http://rpm.pbone.net/.
when I execued "wine setup.exe" (Note: it is in the
hardware, not in CDROM. I am not for sure whether it
is a problem). The following errors occured.
fixme:msi:MsiEnableLogA 00000516
"c:\\windows\\temp\\Office 2000 Premium
Setup(0008)_MsiExec.txt"
2007 Apr 18
0
[Bridge] Help: bridging eth0 and wlan0?
Hello all,
I'm trying to bridge the wlan0 and eth0 on an embedded
system. I used the following commands to setup the
bridge:
ifconfig eth0 0.0.0.0 promiscuous
ifconfig wlan0 0.0.0.0 promiscuous
brctl addbr br0
brctl addif br0 eth0
brctl addif br0 wlan0
brctl sethello br0 1
brctl setmaxage br0 4
brctl setfd br0 4
ifconfig br0 up
The eth0 is connected to a local network, and wlan0 is
set to
2004 Oct 19
1
Error in grep
Hi, there.
I used the function read.maimages in limma package to analyze the microarray data .but I got following message
>RG <- read.maimages(targets$FileName, source="spot")
Error in grep(pattern, x, ignore.case, extended, value, fixed) :
invalid argument
I don't know what is the matter
Thanks a lot
Regards
Shizhu Zang
Department of Biochemsitry
Peking
2004 Oct 25
1
unable to open connection
Hi , there:
I used function source to download the package
but found
> source("http://www.bioconductor.org/getBioC.R")
Error in file(file, "r") : unable to open connection
In addition: Warning message:
unable to resolve 'www.bioconductor.org'.
Then I downloaded the packages from CRAN
and found
> local({a <- CRAN.packages()
+
2004 Oct 19
2
error in file(file, "r")
Hi, there.
I am trying to read a file into R, but I got following message
Error in file(file, "r") : unable to open connection In addition: Warning message: cannot open file `SwirlSample.txt' .
In fact, my file has been already in the current working directory.
My R is running on window operation system instead of UNIX.
Thanks.
Shizhu Zang
Department of Biochemsitry
Peking
2004 Aug 13
1
a quetsion on charset
hi, all
I am a new user of wine. when i run it , the following messages are
printed.
fixme:nls:init_default_lcid charset GB18030 was not recognized;
what should i do to handle it ?
Thanks in advance.
_________________________________________________________________
Ãâ·ÑÏÂÔØ MSN Explorer: http://explorer.msn.com/lccn/
2003 Apr 11
1
samba performance on uclinux embedded system
Hello,
Did anyone do some work on improving the samba
read/write performance?
We've got a board attached with an IDE hadisk, running
samba 2.0.7 on uClinux(NOMMU) OS, the IDE throughput:
10.5Mbps,ethernet speed: 16Mbps,Samba throughput(copy
file from WINDOWS PC to host board ): 600KByte/s,CPU
working at 120MHz, system SDRAM 16Mbyte.
Could anyone help to figure out where the bottleneck
is and
2006 Jun 30
1
Random numbers from noncentral t-distribution
Hi there:
I'd thought these two versions of noncentral t-distribution are essentially the same:
> qqplot(rt(1000,df=20,ncp=3),qt(runif(1000),df=20,ncp=3))
But, the scales of the x-axis and the y-axis are quite different according to the QQ-plot.
Did I make any mistakes somewhere?
Thanks,
Long
---------------------------------
2006 Aug 31
6
newbie question about index
Hi,
I am trying to convert a variable a = sample(1:3,100,rep = T) represents choices into a 3X100 dummy varible b with corresponding element set to 1 otherwise 0.
eg.
a: 1 3 2 1 2 3 1 1....
b: 1 0 0 1 0 0 1 1..
0 0 1 0 1 0 0 0...
0 1 0 0 0 1 0 0...
Is there something like b[a] =1 existing? I could not figure this out myself.
---------------------------------