search for: ppurely

Displaying 2 results from an estimated 2 matches for "ppurely".

Did you mean: purely
2006 Aug 26
0
Re: Prag Programmers style PDF personalization
...of "I did implement Unicode in my app, why didn''t you?" But the way it seems to work in PDF is indeed inexplicably terrible, so this should wait. Although that makes PDF::Writer unusable for my for just about any purpose (except formatting subversion changelogs and other ppurely programming-related documentation that is guaranteed to be ASCII). hope you pardon my pun. I will try to contact the pdstamp people and ask them how they handle the problem, I might need a Unicode-aware stamper soon. -- Julian ''Julik'' Tarkhanov please send all personal mail...
2007 Aug 24
4
Turning a logical vector into its indices without losing its length
I have the code below which gives me what I want for temp based on logvec but I was wondering if there was a shorter way ( i.e : a one liner ) without having to initialize temp to zeros. This is purely for learning purposes. Thanks. logvec <- c(TRUE,FALSE,FALSE,TRUE,FALSE,FALSE,TRUE,FALSE) temp<-numeric(length(invec)) temp[invec]<-which(invec) temp [1] 1 0 0 4 0 0 7 0 obviously, the