search for: dilas

Displaying 7 results from an estimated 7 matches for "dilas".

Did you mean: filas
2009 Sep 29
4
[LLVMdev] LLVM: C++ -> C
I've read that LLVM can convert from C++ to C code. So I've used it in such a way: I'm Windows-user so I used MinGW. I employed this file as the test: llvm-hello.cpp: #include <iostream> int main(int argc, char* argv[]) { system("pause"); return 0; } result of "llvm-g++ C:\llvm_hello.cpp -o C:\llvm_hellopp.exe" worked just fine. as a result of
2009 Sep 29
0
[LLVMdev] LLVM: C++ -> C
On Sep 29, 2009, at 9:37 AM, dilas dilas wrote: > I've read that LLVM can convert from C++ to C code. It does, but it does not supply a C++ library. You'll need to do that. > So I've used it in such a way: > I'm Windows-user so I used MinGW. > I employed this file as the test: > > llvm-hello...
2013 Nov 12
1
How to replace NA's data with some value
Hi all, I have a data set with missing value. I would like to estimate those missing value by using normal ratio method. Below is part of my data: AS BL Serdang Jhr Phg Target station 0 0.0 12.8 0.0 23.7 0.0 6 0.0 81.7 0.2 0.0 NA 0 1.5 60.9 0.0 0.0 15.5 1 13.0 56.8 17.5 32.8 6.4 4 3.0 66.4
2012 May 28
1
simulation of levene's test
hello, I try to run simulation of levene's test to find the p-value but the error of replacement has length zero occur, could anyone help me to fix this problem? asim <- 1000 pv<-rep(NA,asim) for(i in 1:asim) {print(i) set.seed(i) g1 <- rnorm(20,0,2) g2 <- rnorm(20,0,2) g3 <- rnorm(20,0,2) x <- c(g1,g2,g3) group<-as.factor(c(rep(1,20),rep(2,20),rep(3,20))) library(Rcmdr)
2008 Sep 03
3
DID number
Hi All, I bought a DID number from VOxbone...this number could be dialed from any PSTN line and could be forwarded to any SIP server like asterisk server...Now I need to forward this number to my asterisk server so when a customer dial this number from his GSM or Land line PSTN number the call will be forwarde to my asterisk server and I need to play a wav file for example.. Can you please give me
2009 Oct 03
0
[LLVMdev] Compilation of library
How to compile the libstdc++ library to LLVM bitcode?
2012 Jun 04
1
simulation of modified bartlett's test
Hi, I run this code to get the power of the test for modified bartlett's test..but I'm not really sure that my coding is right.. #normal distribution unequal variance asim<-5000 pv<-rep(NA,asim) for(i in 1:asim) {print(i) set.seed(i) n1<-20 n2<-20 n3<-20 mu<-0 sd1<-sqrt(25) sd2<-sqrt(50) sd3<-sqrt(100) g1<-rnorm(n1,mu,sd1) g2<-rnorm(n2,mu,sd2)