search for: 25e6

Displaying 2 results from an estimated 2 matches for "25e6".

Did you mean: 256
2010 Apr 14
8
how can I plot the histogram like this using R?
I want to get the plot like this, http://n4.nabble.com/file/n1839303/%25E9%25A2%2591%25E7%258E%2587%25E5%2588%2586%25E5%25B8%2583%25E5%259B%25BE%25E6%25A0%2587%25E5%2587%2586.jpg %E9%A2%91%E7%8E%87%E5%88%86%E5%B8%83%E5%9B%BE%E6%A0%87%E5%87%86.jpg not this, http://n4.nabble.com/file/n1839303/R.jpg R.jpg and the data here, thank you! http://n4.nabble.com/file/n1839303/y1.txt y1.txt can R deal with this problem? how can I do? -- View thi...
2011 Oct 03
2
patch: Replace many usleep and some sleep calls with nanosleep
...============================================== --- a/drivers/belkin.c 2011-05-31 13:36:49.000000000 +0300 +++ b/drivers/belkin.c 2011-08-17 00:40:17.000000000 +0300 @@ -113,7 +113,7 @@ static int get_belkin_reply(char *buf) long cnt; char tmp[8]; - usleep(25000); + struct timespec delay = {0, 25e6}; nanosleep(&delay, NULL); /* pull first 7 bytes to get data length - like ~00D004 */ ret = ser_get_buf_len(upsfd, (unsigned char *)tmp, 7, 2, 0); @@ -160,7 +160,7 @@ static int do_broken_rat(char *buf) long cnt; char tmp[8]; - usleep(25000); + struct timespec delay = {0, 25e6}; nan...