search for: puzzing

Displaying 4 results from an estimated 4 matches for "puzzing".

Did you mean: puzzling
2007 Jun 11
2
Rounding?
I was a bit puzzed by: > formatC(6.65,format="f",digits=1) [1] "6.6" So I experimented and found: > formatC(6.6500000000000001,format="f",digits=1) [1] "6.6" > formatC(6.650000000000001,format="f",digits=1) [1] "6.7" > round(6.6500000000000001,1) [1] 6.7 > round(6.650000000000001,1) [1] 6.7 > version
2005 Sep 02
1
Dlink dph-140s/ACT P104SLD
...ms like the rtp side is not communicating properly. The codec selected is ulaw as in the config, I changed what they call "media" port from 41000 to 10000, to no avail. Does anyone have a fully working dlink phone with aah, or particularly this model? It seems very close to working. The puzzing thing to me is you can never hear any audio (tones are ok), and the audio is heard in a vm message. The phone is pretty decent otherwise so any tips would be appreciated. Thanks, Dale
2008 Nov 12
5
function that uses a variable name as the parameter
Hello dear R people! Several times it occurred to me that a function that uses a variable name as a parameter would be helpful, but I did not find out how to write such a function. I have experience in several programming language, but I did not come across a helpful trick... What I want to have is... a <- 12 # starting value add <- function(variable,increment) { variable <-
2009 Aug 11
2
I don't get --link-dest, at all
Hourly I have an rsync job backup /home to /home/backup. I have 24 directories (one for each hour): home.0 ... home.23 Here is the script I am running via cron: #! /usr/local/bin/bash dest=`date +%k | sed 's/ //g'` linkdir=`date -v-1H +%k | sed 's/ //g'` chflags -R noschg /home/backup rm -rf /home/backup/home.$dest rsync -ahHP --numeric-ids --delete --stats --link-dest=../