search for: mcquillan

Displaying 11 results from an estimated 11 matches for "mcquillan".

Did you mean: mcmillan
2009 Jun 18
1
[LLVMdev] User question, using IRBuilder to generate a llvm.memcpy instruction.
Hello, If this is not the correct list to ask this question on I apologize. I am attempting to generate a llvm.memcpy instruction with an IRBuilder but I cannot find the appropriate way to do this. Thanks in advance, Sean -- Sean (Fritz) McQuillan - http://sean-mcquillan.com/ -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20090617/d52bbce6/attachment.html>
2002 Feb 06
3
will syslinux work on a harddisk ?
...he motherboard, and i'm trying to get syslinux to work with it, so I can load a Linux kernel and an initrd. I'm not having any luck with it. Then it dawned on me that the boot loader in syslinux might be expecting a floppy drive rather than an atapi hard disk. Any thoughts? Thanks, Jim McQuillan jam at Ltsp.org
2010 Aug 11
5
Creating vectors
I didn't really know what to post as the topic subject, but I have a vector, for instance (2,2,4,6,2,4,4,6,8,6) and I want to create another vector which is just numbers from 1 to 4 since there are only 4 unique numbers in my vector, so for instance 2 would be 1, 4 would be 2, 6 would be 3, and 8 would be 4, so my new vector would be (1,1,2,3,1,2,2,3,4,3). The vector I have has longer
2009 Apr 07
6
Sequences
Hi, I am trying to make a sequence and am using a for loop for this. I want to start off with an initial value ie S[0]=0 then use the loop to create other values. This is what I have so far but I just keep getting error messages. #To calculate the culmulative sums: s<-rep(0,207) #as this is the length of the vector I know I will have s<-as.vector(s)
2003 Feb 22
1
Patch for a port forwarding problem in serverloop.c
...s back up, and tries to re-establish the forwarded port, it can't. So, now with my patch, the client will realize that the port forward request failed, and it will sit in a loop, and try every 10 seconds, until the connection succeeds. Anyway, thanks, and I hope you find my patch useful. Jim McQuillan jam at Ltsp.org -------------- next part -------------- --- serverloop.c.orig Sat Feb 22 11:35:39 2003 +++ serverloop.c Sat Feb 22 11:19:29 2003 @@ -989,6 +989,9 @@ /* Start listening on the port */ success = channel_setup_remote_fwd_listener( listen_address, listen_port, options.ga...
2003 Feb 11
1
Adding Printer Drivers from Windows XP
I am having trouble trying to add printer drivers from Windows XP. I'm running SAMBA 2.2.7a on SUSE 7.2. As best I can determine, the problem relates to permissions - Windows doesn't seem to be able to write the files to the printer driver directory on the server. Yet, I can set up an ordinary file share to that same directory and logged on as the same user, I can read and write the
2009 May 13
2
converting numeric into character strings
Hi, Im trying to put some numbers into a dataframe , I have a list of numbers (change points in a time series) like such [1] 2 11 12 20 21 98 99 but I want R to recognise this as just a character string so it will put it in one row and column, ideally I want them seperated by commas so I would have for example Person Change points (seconds) A
2011 May 16
1
Matrix manipulation in for loop
Hi all, I have a problem with getting my code to do what I want! This is the code I have: create.means.one.size<-function(nsample,var,nboot){ mat.x<-matrix(0,nrow=nboot,ncol=nsample) for(i in 1:nboot){ mat.x[i,]<-sample(var,nsample,replace=T) } mean.mat<-rep(0,nboot) for(i in 1:nboot){ mean.mat[i]<-mean(mat.x[i,]) } sd.mean<-sd(mean.mat) return(mean.mat) } where
2009 Apr 03
2
Linear model, finding the slope
Hi for some data I working on I am merely plotting time against temperature for a variable named filmclip. So for example, I have volunteers who watched various film clips and have used infared camera to monitor the temperature on their face at every second of the clip. The variable names I have used are Normalised ( for the temperature) and Frame (for the time in seconds). So I have fitted a
2010 Jun 18
2
Vector manipulation, for loop needed?
Hi, I have a vector of time in days t<-1:48. I have observations and the day they were recorded. I also have a vector, S which takes different values depending on which day the observation was recorded. For example if on day 1 all in vector S get a value of 46/48, on day 2 get 42/48, day 3 38/48, decreasing by 4/48 each time until day 12 gets the value 2/48. Then for any day greater than 12
2009 Apr 10
3
turning list into vector/dataframe
Hi, I have used this command : resamples<-lapply(1:1000,function(i) sample(lambs,replace=F)) resamples2<-lapply(resamples,Cusum) to get a list of 1000 samples of my data. The function Cumsum is defined as follows: Cusum<-function(x){ SUM<-cumsum(x)-(1:length(x))*mean(x) min<-min(cumsum(x)-(1:length(x))*mean(x)) max<-max(cumsum(x)-(1:length(x))*mean(x)) diff<-max-min