search for: donots

Displaying 20 results from an estimated 120 matches for "donots".

Did you mean: donors
2012 Dec 12
2
[LLVMdev] donot support uint datatype?
hi guys, i use clang to compile a program with datatype uint, but i get errors saying " use of undeclared identifier 'uint'; did you mean 'int'? ". it really doesn't support it? if true, how can i add a datatype? -- View this message in context: http://llvm.1065342.n5.nabble.com/donot-support-uint-datatype-tp52523.html Sent from the LLVM - Dev mailing list archive
2012 Dec 12
2
[LLVMdev] donot support uint datatype?
hi Wei-Ren, i got it, i have to add a "typedef int uint;" that's not a big problem thank you -- View this message in context: http://llvm.1065342.n5.nabble.com/donot-support-uint-datatype-tp52523p52528.html Sent from the LLVM - Dev mailing list archive at Nabble.com.
2012 Dec 12
0
[LLVMdev] donot support uint datatype?
Hi Chen, On Tue, Dec 11, 2012 at 04:37:20PM -0800, Dong Chen wrote: > hi guys, > i use clang to compile a program with datatype uint, but i get errors saying > " use of undeclared identifier 'uint'; did you mean 'int'? ". > > it really doesn't support it? if true, how can i add a datatype? clang related question should go to cfe-dev at cs.uiuc.edu
2012 Dec 12
0
[LLVMdev] donot support uint datatype?
On Tue, Dec 11, 2012 at 05:30:46PM -0800, Dong Chen wrote: > hi Wei-Ren, > i got it, i have to add a "typedef int uint;" > that's not a big problem Souldn't you use "typedef unsigned uint"? -- Wei-Ren Chen (陳韋任) Computer Systems Lab, Institute of Information Science, Academia Sinica, Taiwan (R.O.C.) Tel:886-2-2788-3799 #1667 Homepage:
2006 Jan 14
1
[LLVMdev] A question about alias analysis
Hello, I got a strange result when I used alias analysis DSAA, can you tell what is wrong? 1. The following is the primary body of my pass "fps.cpp": AliasAnalysis *AA = &getAnalysis<AliasAnalysis>(); AliasSetTracker AST(*AA); for (Module::iterator fi = M.begin(), fe = M.end(); fi != fe; ++fi ) for (Function::iterator bi = fi->begin(), be = fi->end(); bi
2006 May 25
1
how to get the data in a circle
I want to get the data in a circle from a large square plot. If the data includes only two columns or more columns which is number style, I can do it. But if the data includes other columns which is not number style (e.g. species name), I donot know how to do it. And I donot want to delete the columns because it is useful to me. e.g. species x y a 12
2009 Nov 04
1
variable selectin---reduce the numbers of initial variable
hello, my problem is like this: now after processing the varibles, the remaining 160 varibles(independent) and a dependent y. when I used PLS method, with 10 components, the good r2 can be obtained. but I donot know how can I express my equation with the less varibles and the y. It is better to use less indepent varibles. that is how can I select my indepent varibles. Maybe GA is good
2007 Jun 22
3
How to run "mathematica" or "c" programs in R?
I have some programs which were writen in mathematica or c language, but I donot know how to use these software. So I want to run them in R. Can I do it ? How to run "mathematica" or "c" programs in R? Jian Zhang [[alternative HTML version deleted]]
2007 Mar 29
2
Problem while using asterisk Realtime
I am having problem while having asterisk work with ODBC (Postgres) The error that I am getting is "config.c: Realtime mapping for 'sippeers' found to engine 'odbc', but the engine is not available" I really donot know what has went wrong. I have set the ODBC connection properly I have verified it using :: [root@asterisk ~]# echo "select 1 " | isql asterisk
2005 Jun 20
1
[LLVMdev] 'make check' failed with: ... PHI node entries donot match predece
Hi Reid, Now, I've removed the file and updated the source tree with this command: cvs -z3 -d :pserver:anon at llvm-cvs.cs.uiuc.edu:/var/cvs/llvm update -PdR llvm However, the file still exits. Henrik. >From: Reid Spencer >Date: Mon, 20 Jun 2005 10:57:54 -0700 > >Hi Henrik, > >You don't have the latest C/C++ Front End Source code. Please update >from CVS to get
2010 Apr 08
0
selected observations based several variables
Hi, My problem maybe a little bit complicated, so forgive me if the following words are too much. #date set a0<-matrix(c(1.1,1.3,1.1,1.3,1.3, 2.0,1.8,2.0,1.8,1.8, "12/01/2008","05/20/2007","12/06/2008","05/10/2007","05/06/2007", "N","N","A","C","A", 1,2,3,4,5),ncol=5,byrow=FALSE)
2001 Jun 30
0
Ogg Vorbis on MTV online
Dear Ogg Vorbis Lovers, I'm Dirk of oggmusic.de and I'm not a developer. I'm only a publisher, but I think it's interesting for you, to read some news. Oggmusic.de is the official Presenter of the first Ogg Vorbis Cover Contest in Germany. In Cooperation with the Donots, one of the leading Fun-Punk-Emo-Rock-Bands in Germany, oggmusic.de gives unsigned Bands the chance to win a supportgig with the Donots. Some News on other sites: Ogg Vorbis Donots Cover Contest http://www.oggmusic.de/ MTV Online http://www.mtv.de/news/news.php?id=1932 disc4you http://www.disc4y...
2006 Dec 14
3
Model formula question
Hi all, I'm not familiar with R programming and I'm trying to reproduce a result from a paper. Basically, I have a dataset which I would like to model in terms of successive increments, i.e. (y denote empirical values of y) y_1 = y1, y_2 = y1 + delta1, y_3 = y1 + delta1 + delta2. ... y_m = y1 + sum_2^m delta j where delta_j donote successive increments in the y-values, i.e. delta
2005 Jul 25
2
Re: [LLVMdev] Compile a linux kernel with LLVM?
When I compiled a linux kernel, gccas was used to compile assembly code. But gccas cannot recognize the line comment character "#" of gnu assembler, and abort the compile with reporting a error "syntax error, unexpected $undefined". I watch llvm/tools/gccas, but donot known how to add this function in it. Would you give me some suggestions? Thanks.
2006 Jan 15
1
[LLVMdev] A question about alias analysis
Oh, your meaning is pointers in a aliasset have equal address logically? But I think that two pointers are alias means they point to a same memory object, so if pointers "p" and "q" are alias, it seem as p = q, not &p = &q. Another question is about "forwarding". "AliasSet[XXXX, 0] may alias, Mod/Ref forwarding to YYYY" (XXXX != YYYY) means the
2006 Mar 22
2
Asterisk--->>Autodialling
Hi all I'm trying to dial out with a Digium X100P card set up on channel Zap/1 to local number (25921163). My call file is: (out.call) Channel: Zap/1/25921163 Callerid: 25921163 MaxRetries: 2 RetryTime: 60 WaitTime: 30 Context: outgoing Extension: s Priority: 1 And my extension.conf is, [outgoing] exten => s,1,DigitTimeout,5 exten => s,2,ResponseTimeout,10 exten => s,3,Answer
2006 Jun 02
2
a question about a simply figure
I think there is a question in R. I donot know the reason. This is my data about comulative percentage figure. The result is not right. The first point (no=1,leiji=26.94350) in the plot figure was showen in a lower location. Why? Thanks ! > fre no leiji 1 1 26.94350 2 2 46.86401 3 3 60.59032 4 4 72.17355 5 5 77.85521 6 6 82.05853 7 7 85.56495 8 8 87.64378 9 9
2006 Feb 26
2
how to change my data to "point data set" in package "SPLANCE"?
Hi! I want to use the package "SPLANCE" to do Ripley's K analysis I have a basic question about the package. I try to find how to do it, but I cannot. I hope you can help me. I donot know how to change my data form to "point data set". my data form is: > qumo[1:5,] code species dbh x y tag status branch 223 10312 QUMO 54.5 7.83 44.80 10306 alive
2006 Jul 21
4
Reading data with blank elements
Hi, I have a dataset saved in *.csv format, that contains 13 columns (the first column being the title name and the rest experiments) and about 2500 rows. Not all columns in the row have data in it i.e for eg BS00,-0.084,0.0136,-0.1569,-0.6484,1.103,1.7859,0.40287,0.5368,0.08461,-0.1935,-0.147974,0.30685 BS01,0.491270283,0.875826172,,,,,,,,,,
2012 Apr 19
2
Trouble with [sv]apply
Friends I clearly donot understand how sapply and vapply work. What I have is a function that returns a matrix with an indeterminate number of rows (some times zero) but a constant number of columns. I cannot reliably use an apply function to assemble the matrices into a matrix. I am not sure it is possible. I can demonstrate the core of my confusion with this simple code. A.f <-