Displaying 20 results from an estimated 23 matches for "randomnumbers".
Did you mean:
  randomnumber
  
2010 Jul 28
2
Recording interface (pause/PLAY/RERECORD)
Is there a prebuild module/dialplan which gives me a nice interface to recording messages?  Assuming I can't use the voicemail command, I need to offer users a way to record, playback, erase, rerecord, etc.
I can probably do it through dialplan but it feels like I'm reinventing the wheel.
Thanks,
MD
2010 Jan 05
0
Problem with associating comments with blog posts on same page
Hi,
I will admit I am very new to ruby and I am trying to do something
that is not in any tutorials I have found. If you see a more
conventional way to do some of the things I am trying to do, please
let me know.
What I am trying to accomplish. People can edit the comments on the
same page as the listing of posts. The problem is that when I go to
create the comment, it is not getting associated
2010 Sep 14
9
Random File Name
Hi,
Im looking at using MixMonitor to record calls and I know that I need to set the filename first.
However, with the number of calls coming in, hard coding the filename isnt an option.
So I need to do something like this:-
MixMonitor(RANDOMNUMBER.wav)
But can't find a way to generate a random number.
I thought that maybe I could use a unique variable that already exists for the current
2013 Jul 25
0
[LLVMdev] Steps to addDestination
Hi Rasha,
> for(rit=Result.begin();rit!=Result.end();++rit)
>   {
>           Value* Address= BlockAddress::get (*rit);
>
>            IndirectBrInst *IBI = IndirectBrInst::Create(Address, Result.size(),i->getTerminator() );
>            IBI->addDestination((*rit));
>   }
This would be creating a block looking something like:
    [ Do stuff ]
    indirectbr i8*
2018 Sep 21
3
Bias in R's random integers?
...0
X1 <- replicate(N, as.integer(system("bash -c 'echo $RANDOM'", intern = TRUE)))
X2 <- replicate(N, as.integer(system("bash -c 'echo $RANDOM'", intern = TRUE)))
X <- X1 + 2 ^ 15 * (X2 > 2^14)
and with numbers from random.org
library(random)
X <- randomNumbers(N, 0, 2^16-1, col = 1)
So I'm not convinced there is an issue.
Best,
luke
On Fri, 21 Sep 2018, Steve Grubb wrote:
> Hello,
>
> Top posting. Several people have asked about the code to replicate my
> results. I have cleaned up the code to remove an x/y coordinate bias for
> d...
2013 Jul 24
2
[LLVMdev] Steps to addDestination
Hi
1-
for(rit=Result.begin();rit!=Result.end();++rit)
  {
          Value* Address= BlockAddress::get (*rit);
           IndirectBrInst *IBI = IndirectBrInst::Create(Address,
Result.size(),i->getTerminator() );
           IBI->addDestination((*rit));
  }
I tried this code , but the needed destination wasn't added.
2- About LLVM backend
$ llc -march=cpp example_file.ll -o
I think it
2006 Aug 31
0
New package 'random' for non-deterministic random number
Dear useRs,
A few days ago, the initial version 0.1.0 of a new package 'random' was
uploaded to CRAN.
The random packages provides convenient access to the non-deterministic
random numbers provided by the random.org site created by Mads Haahr
(http://www.random.org).  
While certain hardware and software solutions that provide access to
non-deterministic random-numbers exist, few if any
2006 Aug 31
0
New package 'random' for non-deterministic random number
Dear useRs,
A few days ago, the initial version 0.1.0 of a new package 'random' was
uploaded to CRAN.
The random packages provides convenient access to the non-deterministic
random numbers provided by the random.org site created by Mads Haahr
(http://www.random.org).  
While certain hardware and software solutions that provide access to
non-deterministic random-numbers exist, few if any
2007 Feb 25
3
Random Integers
Hi all,
Is there an R function to generate random integers?  Thanks in advance.
Sincerely
Anup
 
---------------------------------
Now that's room service! Choose from over 150,000 hotels 
	[[alternative HTML version deleted]]
2018 Sep 21
0
Bias in R's random integers?
...system("bash -c 'echo $RANDOM'", intern = TRUE)))
> X2 <- replicate(N, as.integer(system("bash -c 'echo $RANDOM'", intern = TRUE)))
> X <- X1 + 2 ^ 15 * (X2 > 2^14)
> 
> and with numbers from random.org
> 
> library(random)
> X <- randomNumbers(N, 0, 2^16-1, col = 1)
> 
> So I'm not convinced there is an issue.
There is an issue, but it is in vseq.c.
The plot I found striking was this:
http://people.redhat.com/sgrubb/files/r-random.jpg
It shows a scatter plot that is bounded to some rectangle where the
upper right and lower l...
2007 Nov 07
0
14 commits - libswfdec/swfdec_as_context.c libswfdec/swfdec_as_interpret.c libswfdec/swfdec_as_interpret.h libswfdec/swfdec_net_stream.c libswfdec/swfdec_script.c libswfdec/swfdec_sprite_movie.c libswfdec/swfdec_tag.c libswfdec/swfdec_text_field_movie.c
libswfdec/swfdec_as_context.c            |   33 --
 libswfdec/swfdec_as_interpret.c          |  397 +++++++++++++++----------------
 libswfdec/swfdec_as_interpret.h          |   10 
 libswfdec/swfdec_net_stream.c            |    1 
 libswfdec/swfdec_script.c                |   39 ---
 libswfdec/swfdec_sprite_movie.c          |   72 +++++
 libswfdec/swfdec_tag.c                   |    2 
2007 Jan 29
0
Branch 'interpreter' - 18 commits - libswfdec/swfdec_image.c libswfdec/swfdec_image.h libswfdec/swfdec_js.c libswfdec/swfdec_js_color.c libswfdec/swfdec_js_sound.c libswfdec/swfdec_pattern.c libswfdec/swfdec_scriptable.c libswfdec/swfdec_script.c
libswfdec/swfdec_image.c      |  113 ++++++++----
 libswfdec/swfdec_image.h      |    5 
 libswfdec/swfdec_js.c         |    5 
 libswfdec/swfdec_js_color.c   |    8 
 libswfdec/swfdec_js_sound.c   |    7 
 libswfdec/swfdec_pattern.c    |    3 
 libswfdec/swfdec_script.c     |  376 +++++++++++++++++++++++++++++++++++++++---
 libswfdec/swfdec_scriptable.c |    2 
 8 files changed, 441
2007 Oct 26
0
2 commits - libswfdec/swfdec_as_interpret.c libswfdec/swfdec_as_object.h test/trace
libswfdec/swfdec_as_interpret.c   |   56 ++++++++++++++++++++++
 libswfdec/swfdec_as_object.h      |    1 
 test/trace/Makefile.am            |    9 +++
 test/trace/implements-5.swf       |binary
 test/trace/implements-5.swf.trace |   34 +++++++++++++
 test/trace/implements-6.swf       |binary
 test/trace/implements-6.swf.trace |   34 +++++++++++++
 test/trace/implements-7.swf       |binary
2007 Jun 08
0
Changes to 'refs/tags/0.4.2'
Tag '0.4.2' created by Benjamin Otte <otte at gnome.org> at 2007-02-08 20:27 -0800
release 0.4.2 ("Two completely different numbers")
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.3 (GNU/Linux)
iD8DBQBFy4frvMv5VCdLq8QRAtJoAJ4xxUF2QJM3uCZDJOSWzIKLimGsAwCdEqek
VfJ5PxRYrDPDNSR9GYwOVcc=
=pXML
-----END PGP SIGNATURE-----
Changes since 0.4.1:
Benjamin Otte:
      back to
2007 Apr 12
0
Branch 'as' - 15 commits - libswfdec/swfdec_as_context.c libswfdec/swfdec_as_context.h libswfdec/swfdec_as_frame.c libswfdec/swfdec_as_frame.h libswfdec/swfdec_as_function.c libswfdec/swfdec_as_function.h libswfdec/swfdec_as_interpret.c
libswfdec/swfdec_as_context.c   |   29 ++--
 libswfdec/swfdec_as_context.h   |    5 
 libswfdec/swfdec_as_frame.c     |   47 +++++-
 libswfdec/swfdec_as_frame.h     |    7 -
 libswfdec/swfdec_as_function.c  |   12 +
 libswfdec/swfdec_as_function.h  |    4 
 libswfdec/swfdec_as_interpret.c |  270 +++++++++++++++++++---------------------
 libswfdec/swfdec_as_object.c    |   31 ++++
2007 Oct 25
0
6 commits - libswfdec/swfdec_as_interpret.c test/trace
libswfdec/swfdec_as_interpret.c          |   89 ++++++++++++++++++++++++-------
 test/trace/Makefile.am                   |    9 +++
 test/trace/cast-5.swf                    |binary
 test/trace/cast-5.swf.trace              |    2 
 test/trace/cast-6.swf                    |binary
 test/trace/cast-6.swf.trace              |    2 
 test/trace/cast-7.swf                    |binary
2018 Sep 20
4
Bias in R's random integers?
Hello,
On Thursday, September 20, 2018 11:15:04 AM EDT Duncan Murdoch wrote:
> On 20/09/2018 6:59 AM, Ralf Stubner wrote:
> > On 9/20/18 1:43 AM, Carl Boettiger wrote:
> >> For a well-tested C algorithm, based on my reading of Lemire, the
> >> unbiased "algorithm 3" in https://arxiv.org/abs/1805.10941 is part
> >> already of the C standard library in
2007 Apr 27
0
Changes to 'refs/tags/0.4.3'
Tag '0.4.3' created by Benjamin Otte <otte@gnome.org> at 2007-03-22 20:27 -0700
release 0.4.3 ("Your tube")
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.6 (GNU/Linux)
iD8DBQBGAti+vMv5VCdLq8QRAo5TAKCU+ko+aaq9Y11c3W4uvWGvKYo1HgCfcjGk
AYQ91WIDkDeClzJO/fxEO5U=
=XHqm
-----END PGP SIGNATURE-----
Changes since 0.4.1:
Benjamin Otte:
      back to cvs
      fix config.h
2007 Apr 12
0
Branch 'as' - 14 commits - libswfdec-gtk/swfdec_playback_alsa.c libswfdec/swfdec_as_context.c libswfdec/swfdec_as_context.h libswfdec/swfdec_as_frame.c libswfdec/swfdec_as_frame.h libswfdec/swfdec_as_function.c libswfdec/swfdec_as_function.h
libswfdec-gtk/swfdec_playback_alsa.c |    3 
 libswfdec/swfdec_as_context.c        |   55 ++++++++++++---
 libswfdec/swfdec_as_context.h        |    4 +
 libswfdec/swfdec_as_frame.c          |    6 +
 libswfdec/swfdec_as_frame.h          |    6 +
 libswfdec/swfdec_as_function.c       |   65 ++++++++++++------
 libswfdec/swfdec_as_function.h       |   13 +--
 libswfdec/swfdec_as_interpret.c      | 
2007 Jul 02
0
Branch 'as' - 4 commits - libswfdec/swfdec_as_interpret.c test/trace
libswfdec/swfdec_as_interpret.c     |   51 +
 test/trace/Makefile.am              |   16 
 test/trace/chartoascii-4.swf        |binary
 test/trace/chartoascii-4.swf.trace  |    7 
 test/trace/chartoascii-5.swf        |binary
 test/trace/chartoascii-5.swf.trace  | 1011 ++++++++++++++++++++++++++++++++++++
 test/trace/chartoascii-6.swf        |binary
 test/trace/chartoascii-6.swf.trace  | 1008