Csound Csound-dev Csound-tekno Search About

RANDOM NUMBERS

Date1998-07-16 18:40
From"Ruston, Paul"
SubjectRANDOM NUMBERS
Sorry if you've received this already.  Something weird is going on with
my server. 

I hope I'm not displaying my ignorance here or encouraging the
antagonism between the two of you but doesn't Jean Piche's formula
produce  -1's and  0's instead of  -1's and +1's ?

k1 	rand	1
k2 	= 	int(k1+1)-1

What do you think of these suggestions?  Is one better than the other?
(variations of Erik Spjut's suggestion)

k1 rnd(1)
k2=2*int(2*k1)-1

or 

k1 rand 1
k2 = 2*int(2*abs(k1))-1

And I apologize.  I am one of those that does not fully understand the
random functions (but I'm working on it).  Thanks again. 

-----Original Message-----
From:	jp [SMTP:pichejnospam@ERE.UMontreal.CA]
Subject:	Re: RANDOM NUMBERS

Erik proposes (but surely does not test):

> k1 rand
> k2 = 2*int(2*k1)-1


k1 	rand	1
k2 	= 	int(k1+1)-1

on the other hand, works well.

Erik goes to the corner...
and stands in shame for the rest of the week.

[Ruston, Paul]  Original posting:
>Could anyone recommend a simple way to generate random +1's and -1's
>(whole #'s - nothing in between and no zeros)? 
 


Received: from stork.maths.bath.ac.uk by omphalos.maths.Bath.AC.UK id aa02265;
          16 Jul 98 19:20 BST
Received: from pat.bath.ac.uk by stork.maths.Bath.AC.UK id aa17134;
          16 Jul 98 19:20 BST
Received: (qmail 19711 invoked from network); 16 Jul 1998 18:20:39 -0000
Received: from hermes.ex.ac.uk (HELO exeter.ac.uk) (144.173.6.14)
  by pat.bath.ac.uk with SMTP; 16 Jul 1998 18:20:39 -0000
Received: from noether [144.173.8.10] by hermes via SMTP (TAA17647); Thu, 16 Jul 1998 19:16:27 +0100 (BST)
Received: from exeter.ac.uk by maths.ex.ac.uk; Thu, 16 Jul 1998 19:16:19 +0100
Received: from Thuban.AC.HMC.Edu [134.173.53.8] (may be forged) by hermes via ESMTP (TAA13853); Thu, 16 Jul 1998 19:16:17 +0100 (BST)
Received: from [134.173.38.61] (Spjut.Eng.HMC.Edu)
 by THUBAN.AC.HMC.EDU (PMDF V5.1-7 #28820)
 with ESMTP id <01IZGSW1NUUE8WX0M3@THUBAN.AC.HMC.EDU> for
 csound@maths.ex.ac.uk; Thu, 16 Jul 1998 11:16:15 PDT
Date: Thu, 16 Jul 1998 11:17:17 -0700
From: Erik Spjut 
Subject: Re: RANDOM NUMBERS
In-reply-to: <98Jul16.130223edt.20613@fw.osler.com>
X-Sender: spjut@thuban.ac.hmc.edu
To: "Ruston, Paul" 
Cc: 'Csound group' 
Message-id: 
MIME-version: 1.0
Content-type: text/plain; charset="us-ascii"
Sender: owner-csound-outgoing@maths.ex.ac.uk
Precedence: bulk

I personally like:

k1   rand  1
k2   =     2*int(k1+1)-1

The logic is a s follows: k1 is a random number between -1 and +1. If we
add 1 we get a random number between 0 and +2 with a mean of 1. If we take
the integer part, for values between 0 and 1 we get 0, and for values
between 1 and 1.9999999... we get 1. Multiplying 0 or 1 by 2 gives 0 or 2.
Subtracting 1 from 0 or 2 gives -1 or +1. Thus it should work. The main
error in my original formula was because I forgot rand varies from -amp to
+amp. Random number generators not in Csound usually vary from 0 to 1. The
minor error was that I forgot to include the amp argument for rand.

But whatever works for you is fine with me.

At 12:56 PM -0400 7/16/98, Ruston, Paul wrote:
>Sorry if you've received this already.  Something weird is going on with
>my server.
>
>I hope I'm not displaying my ignorance here or encouraging the
>antagonism between the two of you but doesn't Jean Piche's formula
>produce  -1's and  0's instead of  -1's and +1's ?
>
>k1 	rand	1
>k2 	= 	int(k1+1)-1
>
>What do you think of these suggestions?  Is one better than the other?
>(variations of Erik Spjut's suggestion)
>
>k1 rnd(1)
>k2=2*int(2*k1)-1
>
>or
>
>k1 rand 1
>k2 = 2*int(2*abs(k1))-1

-------------------------------------------------------------------------------
Erik Spjut (rhymes with cute) - Acting Director,The Center for Design Education
and/or Associate Professor of Engineering
Harvey Mudd College, Claremont, CA 91711  USA
Erik_Spjut@hmc.edu      Ph & Voice mail (909) 607-3890      Fax (909) 621-8967




Received: from stork.maths.bath.ac.uk by omphalos.maths.Bath.AC.UK id aa02365;
          16 Jul 98 19:50 BST
Received: from pat.bath.ac.uk by stork.maths.Bath.AC.UK id aa19119;
          16 Jul 98 19:50 BST
Received: (qmail 21165 invoked from network); 16 Jul 1998 18:50:23 -0000
Received: from hermes.ex.ac.uk (HELO exeter.ac.uk) (144.173.6.14)
  by pat.bath.ac.uk with SMTP; 16 Jul 1998 18:50:23 -0000
Received: from noether [144.173.8.10] by hermes via SMTP (TAA25820); Thu, 16 Jul 1998 19:44:44 +0100 (BST)
Received: from exeter.ac.uk by maths.ex.ac.uk; Thu, 16 Jul 1998 19:44:32 +0100
Received: from [199.85.19.2] by hermes via ESMTP (TAA12082); Thu, 16 Jul 1998 19:44:31 +0100 (BST)
Received: by fw.osler.com id <20625>; Thu, 16 Jul 1998 14:49:10 -0400
Message-Id: <98Jul16.144910edt.20625@fw.osler.com>
From: "Ruston, Paul" 
To: 'jp' 
Cc: "'Erik_Spjut@HMC.Edu'" , 
    'Csound group' 
Subject: RE: RANDOM NUMBERS
Date: Thu, 16 Jul 1998 14:43:32 -0400
X-Mailer:  Microsoft Exchange Server Internet Mail Connector Version 4.0.995.52
MIME-Version: 1.0
Content-Type: text/plain; charset="us-ascii"
Content-Transfer-Encoding: 7bit
Sender: owner-csound-outgoing@maths.ex.ac.uk
Precedence: bulk

Well, now you've got to get along, you've both provided the same
solution in the end.  Thankyou both for your time.  (next project is for
me to develope some math skills!).

Paul Ruston (don't worry, I sensed the sarcasm in your mail to Erik)

>-----Original Message-----
>From:	jp [SMTP:pichejnospam@ERE.UMontreal.CA]
>Sent:	July 16, 1998 2:35 PM
>To:	Ruston, Paul
>Cc:	'Erik_Spjut@HMC.Edu'; 'Csound group'
>Subject:	Re: RANDOM NUMBERS
>
>Paul,
>
>There is no antagonism whatsoever! I just have a weird sense of humour. The
>fact
>is I very much appreciate Erik's input on the list... but then I like to poke
>fun at myself and other occasionaly , specially when they are as sharp as
>Erik! 
>But HOT DAMN!!!>>> my solution does not work!!!! it DOES produce zeros... I
>was
>misguided by the display when checking... This one here seems to work:
>
>k1      rand    1
>k2	= 	2*int(k1+1)-1
>
>and thats almost the same as Erik's!
>
>> I hope I'm not displaying my ignorance here or encouraging the
>> antagonism between the two of you but doesn't Jean Piche's formula
>> produce  -1's and  0's instead of  -1's and +1's ?
>> 
>> k1      rand    1
>> k2      =       int(k1+1)-1
>> 
>> What do you think of these suggestions?  Is one better than the other?
>> (variations of Erik Spjut's suggestion)
>> 
>> k1 rnd(1)
>> k2=2*int(2*k1)-1
>> 
>> or
>> 
>> k1 rand 1
>> k2 = 2*int(2*abs(k1))-1
>> 
>> And I apologize.  I am one of those that does not fully understand the
>> random functions (but I'm working on it).  Thanks again.
>
>-- 
>________________________________________________________
>Jean Piche
>Universite de Montreal
>http://mistral.ere.umontreal.ca/~pichej
>http://www.musique.umontreal.ca/electro/CEC/


Received: from stork.maths.bath.ac.uk by omphalos.maths.Bath.AC.UK id aa05592;
          17 Jul 98 8:24 BST
Received: from mercury.bath.ac.uk by stork.maths.Bath.AC.UK id aa10077;
          17 Jul 98 8:24 BST
Received: (qmail 2990 invoked from network); 17 Jul 1998 07:24:25 -0000
Received: from hermes.ex.ac.uk (HELO exeter.ac.uk) (144.173.6.14)
  by mercury.bath.ac.uk with SMTP; 17 Jul 1998 07:24:25 -0000
Received: from noether [144.173.8.10] by hermes via SMTP (IAA15290); Fri, 17 Jul 1998 08:19:51 +0100 (BST)
Received: from exeter.ac.uk by maths.ex.ac.uk; Fri, 17 Jul 1998 08:19:40 +0100
Received: from [193.121.99.70] by hermes via ESMTP (IAA13053); Fri, 17 Jul 1998 08:19:29 +0100 (BST)
Received: from turing.hogent.be ([193.190.88.183]) by hurricane.netgate.be
          (post.office MTA v2.0 0813 ID# 0-32575U60) with ESMTP id AAC292
          for ; Fri, 17 Jul 1998 09:24:34 +0200
From: David Schuyeteneer 
To: Csound List 
Subject: Fw: RANDOM NUMBERS
Date: Fri, 17 Jul 1998 09:00:47 +0200
X-MSMail-Priority: Normal
X-Priority: 3
X-Mailer: Microsoft Internet Mail 4.70.1155
MIME-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
Message-ID: <19980717072302761.AAC292@turing.hogent.be>
Sender: owner-csound-outgoing@maths.ex.ac.uk
Precedence: bulk

This is from Paul Ruston, he has difficulties with his mailserver and asked
me
to forward it.

later,
David.

 
> I hope I'm not displaying my ignorance here or encouraging the
> antagonism between the two of you but doesn't Jean Piche's formula
> produce  -1's and  0's instead of  -1's and +1's ?
> 
> k1 	rand	1
> k2 	= 	int(k1+1)-1
> 
> What do you think of these suggestions?  Is one better than the other?
> (variations of Erik Spjut's suggestion)
> 
> k1 rnd(1)
> k2=2*int(2*k1)-1
> 
> or 
> 
> k1 rand 1
> k2 = 2*int(2*abs(k1))-1
> 
> And I apologize.  I am one of those that does not fully understand the
> random functions (but I'm working on it).  Thanks again. 



Received: from stork.maths.bath.ac.uk by omphalos.maths.Bath.AC.UK id aa05592;
          17 Jul 98 8:24 BST
Received: from mercury.bath.ac.uk by stork.maths.Bath.AC.UK id aa10077;
          17 Jul 98 8:24 BST
Received: (qmail 2990 invoked from network); 17 Jul 1998 07:24:25 -0000
Received: from hermes.ex.ac.uk (HELO exeter.ac.uk) (144.173.6.14)
  by mercury.bath.ac.uk with SMTP; 17 Jul 1998 07:24:25 -0000
Received: from noether [144.173.8.10] by hermes via SMTP (IAA15290); Fri, 17 Jul 1998 08:19:51 +0100 (BST)
Received: from exeter.ac.uk by maths.ex.ac.uk; Fri, 17 Jul 1998 08:19:40 +0100
Received: from [193.121.99.70] by hermes via ESMTP (IAA13053); Fri, 17 Jul 1998 08:19:29 +0100 (BST)
Received: from turing.hogent.be ([193.190.88.183]) by hurricane.netgate.be
          (post.office MTA v2.0 0813 ID# 0-32575U60) with ESMTP id AAC292
          for ; Fri, 17 Jul 1998 09:24:34 +0200
From: David Schuyeteneer 
To: Csound List 
Subject: Fw: RANDOM NUMBERS
Date: Fri, 17 Jul 1998 09:00:47 +0200
X-MSMail-Priority: Normal
X-Priority: 3
X-Mailer: Microsoft Internet Mail 4.70.1155
MIME-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
Message-ID: <19980717072302761.AAC292@turing.hogent.be>
Sender: owner-csound-outgoing@maths.ex.ac.uk
Precedence: bulk

This is from Paul Ruston, he has difficulties with his mailserver and asked
me
to forward it.

later,
David.

 
> I hope I'm not displaying my ignorance here or encouraging the
> antagonism between the two of you but doesn't Jean Piche's formula
> produce  -1's and  0's instead of  -1's and +1's ?
> 
> k1 	rand	1
> k2 	= 	int(k1+1)-1
> 
> What do you think of these suggestions?  Is one better than the other?
> (variations of Erik Spjut's suggestion)
> 
> k1 rnd(1)
> k2=2*int(2*k1)-1
> 
> or 
> 
> k1 rand 1
> k2 = 2*int(2*abs(k1))-1
> 
> And I apologize.  I am one of those that does not fully understand the
> random functions (but I'm working on it).  Thanks again. 



Received: from stork.maths.bath.ac.uk by omphalos.maths.Bath.AC.UK id aa05592;
          17 Jul 98 8:24 BST
Received: from mercury.bath.ac.uk by stork.maths.Bath.AC.UK id aa10077;
          17 Jul 98 8:24 BST
Received: (qmail 2990 invoked from network); 17 Jul 1998 07:24:25 -0000
Received: from hermes.ex.ac.uk (HELO exeter.ac.uk) (144.173.6.14)
  by mercury.bath.ac.uk with SMTP; 17 Jul 1998 07:24:25 -0000
Received: from noether [144.173.8.10] by hermes via SMTP (IAA15290); Fri, 17 Jul 1998 08:19:51 +0100 (BST)
Received: from exeter.ac.uk by maths.ex.ac.uk; Fri, 17 Jul 1998 08:19:40 +0100
Received: from [193.121.99.70] by hermes via ESMTP (IAA13053); Fri, 17 Jul 1998 08:19:29 +0100 (BST)
Received: from turing.hogent.be ([193.190.88.183]) by hurricane.netgate.be
          (post.office MTA v2.0 0813 ID# 0-32575U60) with ESMTP id AAC292
          for ; Fri, 17 Jul 1998 09:24:34 +0200
From: David Schuyeteneer 
To: Csound List 
Subject: Fw: RANDOM NUMBERS
Date: Fri, 17 Jul 1998 09:00:47 +0200
X-MSMail-Priority: Normal
X-Priority: 3
X-Mailer: Microsoft Internet Mail 4.70.1155
MIME-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
Message-ID: <19980717072302761.AAC292@turing.hogent.be>
Sender: owner-csound-outgoing@maths.ex.ac.uk
Precedence: bulk

This is from Paul Ruston, he has difficulties with his mailserver and asked
me
to forward it.

later,
David.

 
> I hope I'm not displaying my ignorance here or encouraging the
> antagonism between the two of you but doesn't Jean Piche's formula
> produce  -1's and  0's instead of  -1's and +1's ?
> 
> k1 	rand	1
> k2 	= 	int(k1+1)-1
> 
> What do you think of these suggestions?  Is one better than the other?
> (variations of Erik Spjut's suggestion)
> 
> k1 rnd(1)
> k2=2*int(2*k1)-1
> 
> or 
> 
> k1 rand 1
> k2 = 2*int(2*abs(k1))-1
> 
> And I apologize.  I am one of those that does not fully understand the
> random functions (but I'm working on it).  Thanks again. 



Received: from stork.maths.bath.ac.uk by omphalos.maths.Bath.AC.UK id aa05592;
          17 Jul 98 8:24 BST
Received: from mercury.bath.ac.uk by stork.maths.Bath.AC.UK id aa10077;
          17 Jul 98 8:24 BST
Received: (qmail 2990 invoked from network); 17 Jul 1998 07:24:25 -0000
Received: from hermes.ex.ac.uk (HELO exeter.ac.uk) (144.173.6.14)
  by mercury.bath.ac.uk with SMTP; 17 Jul 1998 07:24:25 -0000
Received: from noether [144.173.8.10] by hermes via SMTP (IAA15290); Fri, 17 Jul 1998 08:19:51 +0100 (BST)
Received: from exeter.ac.uk by maths.ex.ac.uk; Fri, 17 Jul 1998 08:19:40 +0100
Received: from [193.121.99.70] by hermes via ESMTP (IAA13053); Fri, 17 Jul 1998 08:19:29 +0100 (BST)
Received: from turing.hogent.be ([193.190.88.183]) by hurricane.netgate.be
          (post.office MTA v2.0 0813 ID# 0-32575U60) with ESMTP id AAC292
          for ; Fri, 17 Jul 1998 09:24:34 +0200
From: David Schuyeteneer 
To: Csound List 
Subject: Fw: RANDOM NUMBERS
Date: Fri, 17 Jul 1998 09:00:47 +0200
X-MSMail-Priority: Normal
X-Priority: 3
X-Mailer: Microsoft Internet Mail 4.70.1155
MIME-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
Message-ID: <19980717072302761.AAC292@turing.hogent.be>
Sender: owner-csound-outgoing@maths.ex.ac.uk
Precedence: bulk

This is from Paul Ruston, he has difficulties with his mailserver and asked
me
to forward it.

later,
David.

 
> I hope I'm not displaying my ignorance here or encouraging the
> antagonism between the two of you but doesn't Jean Piche's formula
> produce  -1's and  0's instead of  -1's and +1's ?
> 
> k1 	rand	1
> k2 	= 	int(k1+1)-1
> 
> What do you think of these suggestions?  Is one better than the other?
> (variations of Erik Spjut's suggestion)
> 
> k1 rnd(1)
> k2=2*int(2*k1)-1
> 
> or 
> 
> k1 rand 1
> k2 = 2*int(2*abs(k1))-1
> 
> And I apologize.  I am one of those that does not fully understand the
> random functions (but I'm working on it).  Thanks again. 



Received: from stork.maths.bath.ac.uk by omphalos.maths.Bath.AC.UK id aa05592;
          17 Jul 98 8:24 BST
Received: from mercury.bath.ac.uk by stork.maths.Bath.AC.UK id aa10077;
          17 Jul 98 8:24 BST
Received: (qmail 2990 invoked from network); 17 Jul 1998 07:24:25 -0000
Received: from hermes.ex.ac.uk (HELO exeter.ac.uk) (144.173.6.14)
  by mercury.bath.ac.uk with SMTP; 17 Jul 1998 07:24:25 -0000
Received: from noether [144.173.8.10] by hermes via SMTP (IAA15290); Fri, 17 Jul 1998 08:19:51 +0100 (BST)
Received: from exeter.ac.uk by maths.ex.ac.uk; Fri, 17 Jul 1998 08:19:40 +0100
Received: from [193.121.99.70] by hermes via ESMTP (IAA13053); Fri, 17 Jul 1998 08:19:29 +0100 (BST)
Received: from turing.hogent.be ([193.190.88.183]) by hurricane.netgate.be
          (post.office MTA v2.0 0813 ID# 0-32575U60) with ESMTP id AAC292
          for ; Fri, 17 Jul 1998 09:24:34 +0200
From: David Schuyeteneer 
To: Csound List 
Subject: Fw: RANDOM NUMBERS
Date: Fri, 17 Jul 1998 09:00:47 +0200
X-MSMail-Priority: Normal
X-Priority: 3
X-Mailer: Microsoft Internet Mail 4.70.1155
MIME-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
Message-ID: <19980717072302761.AAC292@turing.hogent.be>
Sender: owner-csound-outgoing@maths.ex.ac.uk
Precedence: bulk

This is from Paul Ruston, he has difficulties with his mailserver and asked
me
to forward it.

later,
David.

 
> I hope I'm not displaying my ignorance here or encouraging the
> antagonism between the two of you but doesn't Jean Piche's formula
> produce  -1's and  0's instead of  -1's and +1's ?
> 
> k1 	rand	1
> k2 	= 	int(k1+1)-1
> 
> What do you think of these suggestions?  Is one better than the other?
> (variations of Erik Spjut's suggestion)
> 
> k1 rnd(1)
> k2=2*int(2*k1)-1
> 
> or 
> 
> k1 rand 1
> k2 = 2*int(2*abs(k1))-1
> 
> And I apologize.  I am one of those that does not fully understand the
> random functions (but I'm working on it).  Thanks again. 



Received: from stork.maths.bath.ac.uk by omphalos.maths.Bath.AC.UK id aa05592;
          17 Jul 98 8:24 BST
Received: from mercury.bath.ac.uk by stork.maths.Bath.AC.UK id aa10077;
          17 Jul 98 8:24 BST
Received: (qmail 2990 invoked from network); 17 Jul 1998 07:24:25 -0000
Received: from hermes.ex.ac.uk (HELO exeter.ac.uk) (144.173.6.14)
  by mercury.bath.ac.uk with SMTP; 17 Jul 1998 07:24:25 -0000
Received: from noether [144.173.8.10] by hermes via SMTP (IAA15290); Fri, 17 Jul 1998 08:19:51 +0100 (BST)
Received: from exeter.ac.uk by maths.ex.ac.uk; Fri, 17 Jul 1998 08:19:40 +0100
Received: from [193.121.99.70] by hermes via ESMTP (IAA13053); Fri, 17 Jul 1998 08:19:29 +0100 (BST)
Received: from turing.hogent.be ([193.190.88.183]) by hurricane.netgate.be
          (post.office MTA v2.0 0813 ID# 0-32575U60) with ESMTP id AAC292
          for ; Fri, 17 Jul 1998 09:24:34 +0200
From: David Schuyeteneer 
To: Csound List 
Subject: Fw: RANDOM NUMBERS
Date: Fri, 17 Jul 1998 09:00:47 +0200
X-MSMail-Priority: Normal
X-Priority: 3
X-Mailer: Microsoft Internet Mail 4.70.1155
MIME-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
Message-ID: <19980717072302761.AAC292@turing.hogent.be>
Sender: owner-csound-outgoing@maths.ex.ac.uk
Precedence: bulk

This is from Paul Ruston, he has difficulties with his mailserver and asked
me
to forward it.

later,
David.

 
> I hope I'm not displaying my ignorance here or encouraging the
> antagonism between the two of you but doesn't Jean Piche's formula
> produce  -1's and  0's instead of  -1's and +1's ?
> 
> k1 	rand	1
> k2 	= 	int(k1+1)-1
> 
> What do you think of these suggestions?  Is one better than the other?
> (variations of Erik Spjut's suggestion)
> 
> k1 rnd(1)
> k2=2*int(2*k1)-1
> 
> or 
> 
> k1 rand 1
> k2 = 2*int(2*abs(k1))-1
> 
> And I apologize.  I am one of those that does not fully understand the
> random functions (but I'm working on it).  Thanks again. 



Received: from stork.maths.bath.ac.uk by omphalos.maths.Bath.AC.UK id aa05592;
          17 Jul 98 8:24 BST
Received: from mercury.bath.ac.uk by stork.maths.Bath.AC.UK id aa10077;
          17 Jul 98 8:24 BST
Received: (qmail 2990 invoked from network); 17 Jul 1998 07:24:25 -0000
Received: from hermes.ex.ac.uk (HELO exeter.ac.uk) (144.173.6.14)
  by mercury.bath.ac.uk with SMTP; 17 Jul 1998 07:24:25 -0000
Received: from noether [144.173.8.10] by hermes via SMTP (IAA15290); Fri, 17 Jul 1998 08:19:51 +0100 (BST)
Received: from exeter.ac.uk by maths.ex.ac.uk; Fri, 17 Jul 1998 08:19:40 +0100
Received: from [193.121.99.70] by hermes via ESMTP (IAA13053); Fri, 17 Jul 1998 08:19:29 +0100 (BST)
Received: from turing.hogent.be ([193.190.88.183]) by hurricane.netgate.be
          (post.office MTA v2.0 0813 ID# 0-32575U60) with ESMTP id AAC292
          for ; Fri, 17 Jul 1998 09:24:34 +0200
From: David Schuyeteneer 
To: Csound List 
Subject: Fw: RANDOM NUMBERS
Date: Fri, 17 Jul 1998 09:00:47 +0200
X-MSMail-Priority: Normal
X-Priority: 3
X-Mailer: Microsoft Internet Mail 4.70.1155
MIME-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
Message-ID: <19980717072302761.AAC292@turing.hogent.be>
Sender: owner-csound-outgoing@maths.ex.ac.uk
Precedence: bulk

This is from Paul Ruston, he has difficulties with his mailserver and asked
me
to forward it.

later,
David.

 
> I hope I'm not displaying my ignorance here or encouraging the
> antagonism between the two of you but doesn't Jean Piche's formula
> produce  -1's and  0's instead of  -1's and +1's ?
> 
> k1 	rand	1
> k2 	= 	int(k1+1)-1
> 
> What do you think of these suggestions?  Is one better than the other?
> (variations of Erik Spjut's suggestion)
> 
> k1 rnd(1)
> k2=2*int(2*k1)-1
> 
> or 
> 
> k1 rand 1
> k2 = 2*int(2*abs(k1))-1
> 
> And I apologize.  I am one of those that does not fully understand the
> random functions (but I'm working on it).  Thanks again. 



Received: from stork.maths.bath.ac.uk by omphalos.maths.Bath.AC.UK id aa05592;
          17 Jul 98 8:24 BST
Received: from mercury.bath.ac.uk by stork.maths.Bath.AC.UK id aa10077;
          17 Jul 98 8:24 BST
Received: (qmail 2990 invoked from network); 17 Jul 1998 07:24:25 -0000
Received: from hermes.ex.ac.uk (HELO exeter.ac.uk) (144.173.6.14)
  by mercury.bath.ac.uk with SMTP; 17 Jul 1998 07:24:25 -0000
Received: from noether [144.173.8.10] by hermes via SMTP (IAA15290); Fri, 17 Jul 1998 08:19:51 +0100 (BST)
Received: from exeter.ac.uk by maths.ex.ac.uk; Fri, 17 Jul 1998 08:19:40 +0100
Received: from [193.121.99.70] by hermes via ESMTP (IAA13053); Fri, 17 Jul 1998 08:19:29 +0100 (BST)
Received: from turing.hogent.be ([193.190.88.183]) by hurricane.netgate.be
          (post.office MTA v2.0 0813 ID# 0-32575U60) with ESMTP id AAC292
          for ; Fri, 17 Jul 1998 09:24:34 +0200
From: David Schuyeteneer 
To: Csound List 
Subject: Fw: RANDOM NUMBERS
Date: Fri, 17 Jul 1998 09:00:47 +0200
X-MSMail-Priority: Normal
X-Priority: 3
X-Mailer: Microsoft Internet Mail 4.70.1155
MIME-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
Message-ID: <19980717072302761.AAC292@turing.hogent.be>
Sender: owner-csound-outgoing@maths.ex.ac.uk
Precedence: bulk

This is from Paul Ruston, he has difficulties with his mailserver and asked
me
to forward it.

later,
David.

 
> I hope I'm not displaying my ignorance here or encouraging the
> antagonism between the two of you but doesn't Jean Piche's formula
> produce  -1's and  0's instead of  -1's and +1's ?
> 
> k1 	rand	1
> k2 	= 	int(k1+1)-1
> 
> What do you think of these suggestions?  Is one better than the other?
> (variations of Erik Spjut's suggestion)
> 
> k1 rnd(1)
> k2=2*int(2*k1)-1
> 
> or 
> 
> k1 rand 1
> k2 = 2*int(2*abs(k1))-1
> 
> And I apologize.  I am one of those that does not fully understand the
> random functions (but I'm working on it).  Thanks again. 



Received: from stork.maths.bath.ac.uk by omphalos.maths.Bath.AC.UK id aa05592;
          17 Jul 98 8:24 BST
Received: from mercury.bath.ac.uk by stork.maths.Bath.AC.UK id aa10077;
          17 Jul 98 8:24 BST
Received: (qmail 2990 invoked from network); 17 Jul 1998 07:24:25 -0000
Received: from hermes.ex.ac.uk (HELO exeter.ac.uk) (144.173.6.14)
  by mercury.bath.ac.uk with SMTP; 17 Jul 1998 07:24:25 -0000
Received: from noether [144.173.8.10] by hermes via SMTP (IAA15290); Fri, 17 Jul 1998 08:19:51 +0100 (BST)
Received: from exeter.ac.uk by maths.ex.ac.uk; Fri, 17 Jul 1998 08:19:40 +0100
Received: from [193.121.99.70] by hermes via ESMTP (IAA13053); Fri, 17 Jul 1998 08:19:29 +0100 (BST)
Received: from turing.hogent.be ([193.190.88.183]) by hurricane.netgate.be
          (post.office MTA v2.0 0813 ID# 0-32575U60) with ESMTP id AAC292
          for ; Fri, 17 Jul 1998 09:24:34 +0200
From: David Schuyeteneer 
To: Csound List 
Subject: Fw: RANDOM NUMBERS
Date: Fri, 17 Jul 1998 09:00:47 +0200
X-MSMail-Priority: Normal
X-Priority: 3
X-Mailer: Microsoft Internet Mail 4.70.1155
MIME-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
Message-ID: <19980717072302761.AAC292@turing.hogent.be>
Sender: owner-csound-outgoing@maths.ex.ac.uk
Precedence: bulk

This is from Paul Ruston, he has difficulties with his mailserver and asked
me
to forward it.

later,
David.

 
> I hope I'm not displaying my ignorance here or encouraging the
> antagonism between the two of you but doesn't Jean Piche's formula
> produce  -1's and  0's instead of  -1's and +1's ?
> 
> k1 	rand	1
> k2 	= 	int(k1+1)-1
> 
> What do you think of these suggestions?  Is one better than the other?
> (variations of Erik Spjut's suggestion)
> 
> k1 rnd(1)
> k2=2*int(2*k1)-1
> 
> or 
> 
> k1 rand 1
> k2 = 2*int(2*abs(k1))-1
> 
> And I apologize.  I am one of those that does not fully understand the
> random functions (but I'm working on it).  Thanks again. 



Received: from stork.maths.bath.ac.uk by omphalos.maths.Bath.AC.UK id aa05592;
          17 Jul 98 8:24 BST
Received: from mercury.bath.ac.uk by stork.maths.Bath.AC.UK id aa10077;
          17 Jul 98 8:24 BST
Received: (qmail 2990 invoked from network); 17 Jul 1998 07:24:25 -0000
Received: from hermes.ex.ac.uk (HELO exeter.ac.uk) (144.173.6.14)
  by mercury.bath.ac.uk with SMTP; 17 Jul 1998 07:24:25 -0000
Received: from noether [144.173.8.10] by hermes via SMTP (IAA15290); Fri, 17 Jul 1998 08:19:51 +0100 (BST)
Received: from exeter.ac.uk by maths.ex.ac.uk; Fri, 17 Jul 1998 08:19:40 +0100
Received: from [193.121.99.70] by hermes via ESMTP (IAA13053); Fri, 17 Jul 1998 08:19:29 +0100 (BST)
Received: from turing.hogent.be ([193.190.88.183]) by hurricane.netgate.be
          (post.office MTA v2.0 0813 ID# 0-32575U60) with ESMTP id AAC292
          for ; Fri, 17 Jul 1998 09:24:34 +0200
From: David Schuyeteneer 
To: Csound List 
Subject: Fw: RANDOM NUMBERS
Date: Fri, 17 Jul 1998 09:00:47 +0200
X-MSMail-Priority: Normal
X-Priority: 3
X-Mailer: Microsoft Internet Mail 4.70.1155
MIME-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
Message-ID: <19980717072302761.AAC292@turing.hogent.be>
Sender: owner-csound-outgoing@maths.ex.ac.uk
Precedence: bulk

This is from Paul Ruston, he has difficulties with his mailserver and asked
me
to forward it.

later,
David.

 
> I hope I'm not displaying my ignorance here or encouraging the
> antagonism between the two of you but doesn't Jean Piche's formula
> produce  -1's and  0's instead of  -1's and +1's ?
> 
> k1 	rand	1
> k2 	= 	int(k1+1)-1
> 
> What do you think of these suggestions?  Is one better than the other?
> (variations of Erik Spjut's suggestion)
> 
> k1 rnd(1)
> k2=2*int(2*k1)-1
> 
> or 
> 
> k1 rand 1
> k2 = 2*int(2*abs(k1))-1
> 
> And I apologize.  I am one of those that does not fully understand the
> random functions (but I'm working on it).  Thanks again. 



Received: from stork.maths.bath.ac.uk by omphalos.maths.Bath.AC.UK id aa05592;
          17 Jul 98 8:24 BST
Received: from mercury.bath.ac.uk by stork.maths.Bath.AC.UK id aa10077;
          17 Jul 98 8:24 BST
Received: (qmail 2990 invoked from network); 17 Jul 1998 07:24:25 -0000
Received: from hermes.ex.ac.uk (HELO exeter.ac.uk) (144.173.6.14)
  by mercury.bath.ac.uk with SMTP; 17 Jul 1998 07:24:25 -0000
Received: from noether [144.173.8.10] by hermes via SMTP (IAA15290); Fri, 17 Jul 1998 08:19:51 +0100 (BST)
Received: from exeter.ac.uk by maths.ex.ac.uk; Fri, 17 Jul 1998 08:19:40 +0100
Received: from [193.121.99.70] by hermes via ESMTP (IAA13053); Fri, 17 Jul 1998 08:19:29 +0100 (BST)
Received: from turing.hogent.be ([193.190.88.183]) by hurricane.netgate.be
          (post.office MTA v2.0 0813 ID# 0-32575U60) with ESMTP id AAC292
          for ; Fri, 17 Jul 1998 09:24:34 +0200
From: David Schuyeteneer 
To: Csound List 
Subject: Fw: RANDOM NUMBERS
Date: Fri, 17 Jul 1998 09:00:47 +0200
X-MSMail-Priority: Normal
X-Priority: 3
X-Mailer: Microsoft Internet Mail 4.70.1155
MIME-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
Message-ID: <19980717072302761.AAC292@turing.hogent.be>
Sender: owner-csound-outgoing@maths.ex.ac.uk
Precedence: bulk

This is from Paul Ruston, he has difficulties with his mailserver and asked
me
to forward it.

later,
David.

 
> I hope I'm not displaying my ignorance here or encouraging the
> antagonism between the two of you but doesn't Jean Piche's formula
> produce  -1's and  0's instead of  -1's and +1's ?
> 
> k1 	rand	1
> k2 	= 	int(k1+1)-1
> 
> What do you think of these suggestions?  Is one better than the other?
> (variations of Erik Spjut's suggestion)
> 
> k1 rnd(1)
> k2=2*int(2*k1)-1
> 
> or 
> 
> k1 rand 1
> k2 = 2*int(2*abs(k1))-1
> 
> And I apologize.  I am one of those that does not fully understand the
> random functions (but I'm working on it).  Thanks again. 



Received: from stork.maths.bath.ac.uk by omphalos.maths.Bath.AC.UK id aa05592;
          17 Jul 98 8:24 BST
Received: from mercury.bath.ac.uk by stork.maths.Bath.AC.UK id aa10077;
          17 Jul 98 8:24 BST
Received: (qmail 2990 invoked from network); 17 Jul 1998 07:24:25 -0000
Received: from hermes.ex.ac.uk (HELO exeter.ac.uk) (144.173.6.14)
  by mercury.bath.ac.uk with SMTP; 17 Jul 1998 07:24:25 -0000
Received: from noether [144.173.8.10] by hermes via SMTP (IAA15290); Fri, 17 Jul 1998 08:19:51 +0100 (BST)
Received: from exeter.ac.uk by maths.ex.ac.uk; Fri, 17 Jul 1998 08:19:40 +0100
Received: from [193.121.99.70] by hermes via ESMTP (IAA13053); Fri, 17 Jul 1998 08:19:29 +0100 (BST)
Received: from turing.hogent.be ([193.190.88.183]) by hurricane.netgate.be
          (post.office MTA v2.0 0813 ID# 0-32575U60) with ESMTP id AAC292
          for ; Fri, 17 Jul 1998 09:24:34 +0200
From: David Schuyeteneer 
To: Csound List 
Subject: Fw: RANDOM NUMBERS
Date: Fri, 17 Jul 1998 09:00:47 +0200
X-MSMail-Priority: Normal
X-Priority: 3
X-Mailer: Microsoft Internet Mail 4.70.1155
MIME-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
Message-ID: <19980717072302761.AAC292@turing.hogent.be>
Sender: owner-csound-outgoing@maths.ex.ac.uk
Precedence: bulk

This is from Paul Ruston, he has difficulties with his mailserver and asked
me
to forward it.

later,
David.

 
> I hope I'm not displaying my ignorance here or encouraging the
> antagonism between the two of you but doesn't Jean Piche's formula
> produce  -1's and  0's instead of  -1's and +1's ?
> 
> k1 	rand	1
> k2 	= 	int(k1+1)-1
> 
> What do you think of these suggestions?  Is one better than the other?
> (variations of Erik Spjut's suggestion)
> 
> k1 rnd(1)
> k2=2*int(2*k1)-1
> 
> or 
> 
> k1 rand 1
> k2 = 2*int(2*abs(k1))-1
> 
> And I apologize.  I am one of those that does not fully understand the
> random functions (but I'm working on it).  Thanks again. 



Received: from stork.maths.bath.ac.uk by omphalos.maths.Bath.AC.UK id aa05592;
          17 Jul 98 8:24 BST
Received: from mercury.bath.ac.uk by stork.maths.Bath.AC.UK id aa10077;
          17 Jul 98 8:24 BST
Received: (qmail 2990 invoked from network); 17 Jul 1998 07:24:25 -0000
Received: from hermes.ex.ac.uk (HELO exeter.ac.uk) (144.173.6.14)
  by mercury.bath.ac.uk with SMTP; 17 Jul 1998 07:24:25 -0000
Received: from noether [144.173.8.10] by hermes via SMTP (IAA15290); Fri, 17 Jul 1998 08:19:51 +0100 (BST)
Received: from exeter.ac.uk by maths.ex.ac.uk; Fri, 17 Jul 1998 08:19:40 +0100
Received: from [193.121.99.70] by hermes via ESMTP (IAA13053); Fri, 17 Jul 1998 08:19:29 +0100 (BST)
Received: from turing.hogent.be ([193.190.88.183]) by hurricane.netgate.be
          (post.office MTA v2.0 0813 ID# 0-32575U60) with ESMTP id AAC292
          for ; Fri, 17 Jul 1998 09:24:34 +0200
From: David Schuyeteneer 
To: Csound List 
Subject: Fw: RANDOM NUMBERS
Date: Fri, 17 Jul 1998 09:00:47 +0200
X-MSMail-Priority: Normal
X-Priority: 3
X-Mailer: Microsoft Internet Mail 4.70.1155
MIME-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
Message-ID: <19980717072302761.AAC292@turing.hogent.be>
Sender: owner-csound-outgoing@maths.ex.ac.uk
Precedence: bulk

This is from Paul Ruston, he has difficulties with his mailserver and asked
me
to forward it.

later,
David.

 
> I hope I'm not displaying my ignorance here or encouraging the
> antagonism between the two of you but doesn't Jean Piche's formula
> produce  -1's and  0's instead of  -1's and +1's ?
> 
> k1 	rand	1
> k2 	= 	int(k1+1)-1
> 
> What do you think of these suggestions?  Is one better than the other?
> (variations of Erik Spjut's suggestion)
> 
> k1 rnd(1)
> k2=2*int(2*k1)-1
> 
> or 
> 
> k1 rand 1
> k2 = 2*int(2*abs(k1))-1
> 
> And I apologize.  I am one of those that does not fully understand the
> random functions (but I'm working on it).  Thanks again. 



Received: from stork.maths.bath.ac.uk by omphalos.maths.Bath.AC.UK id aa05592;
          17 Jul 98 8:24 BST
Received: from mercury.bath.ac.uk by stork.maths.Bath.AC.UK id aa10077;
          17 Jul 98 8:24 BST
Received: (qmail 2990 invoked from network); 17 Jul 1998 07:24:25 -0000
Received: from hermes.ex.ac.uk (HELO exeter.ac.uk) (144.173.6.14)
  by mercury.bath.ac.uk with SMTP; 17 Jul 1998 07:24:25 -0000
Received: from noether [144.173.8.10] by hermes via SMTP (IAA15290); Fri, 17 Jul 1998 08:19:51 +0100 (BST)
Received: from exeter.ac.uk by maths.ex.ac.uk; Fri, 17 Jul 1998 08:19:40 +0100
Received: from [193.121.99.70] by hermes via ESMTP (IAA13053); Fri, 17 Jul 1998 08:19:29 +0100 (BST)
Received: from turing.hogent.be ([193.190.88.183]) by hurricane.netgate.be
          (post.office MTA v2.0 0813 ID# 0-32575U60) with ESMTP id AAC292
          for ; Fri, 17 Jul 1998 09:24:34 +0200
From: David Schuyeteneer 
To: Csound List 
Subject: Fw: RANDOM NUMBERS
Date: Fri, 17 Jul 1998 09:00:47 +0200
X-MSMail-Priority: Normal
X-Priority: 3
X-Mailer: Microsoft Internet Mail 4.70.1155
MIME-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
Message-ID: <19980717072302761.AAC292@turing.hogent.be>
Sender: owner-csound-outgoing@maths.ex.ac.uk
Precedence: bulk

This is from Paul Ruston, he has difficulties with his mailserver and asked
me
to forward it.

later,
David.

 
> I hope I'm not displaying my ignorance here or encouraging the
> antagonism between the two of you but doesn't Jean Piche's formula
> produce  -1's and  0's instead of  -1's and +1's ?
> 
> k1 	rand	1
> k2 	= 	int(k1+1)-1
> 
> What do you think of these suggestions?  Is one better than the other?
> (variations of Erik Spjut's suggestion)
> 
> k1 rnd(1)
> k2=2*int(2*k1)-1
> 
> or 
> 
> k1 rand 1
> k2 = 2*int(2*abs(k1))-1
> 
> And I apologize.  I am one of those that does not fully understand the
> random functions (but I'm working on it).  Thanks again. 



Received: from stork.maths.bath.ac.uk by omphalos.maths.Bath.AC.UK id aa05592;
          17 Jul 98 8:24 BST
Received: from mercury.bath.ac.uk by stork.maths.Bath.AC.UK id aa10077;
          17 Jul 98 8:24 BST
Received: (qmail 2990 invoked from network); 17 Jul 1998 07:24:25 -0000
Received: from hermes.ex.ac.uk (HELO exeter.ac.uk) (144.173.6.14)
  by mercury.bath.ac.uk with SMTP; 17 Jul 1998 07:24:25 -0000
Received: from noether [144.173.8.10] by hermes via SMTP (IAA15290); Fri, 17 Jul 1998 08:19:51 +0100 (BST)
Received: from exeter.ac.uk by maths.ex.ac.uk; Fri, 17 Jul 1998 08:19:40 +0100
Received: from [193.121.99.70] by hermes via ESMTP (IAA13053); Fri, 17 Jul 1998 08:19:29 +0100 (BST)
Received: from turing.hogent.be ([193.190.88.183]) by hurricane.netgate.be
          (post.office MTA v2.0 0813 ID# 0-32575U60) with ESMTP id AAC292
          for ; Fri, 17 Jul 1998 09:24:34 +0200
From: David Schuyeteneer 
To: Csound List 
Subject: Fw: RANDOM NUMBERS
Date: Fri, 17 Jul 1998 09:00:47 +0200
X-MSMail-Priority: Normal
X-Priority: 3
X-Mailer: Microsoft Internet Mail 4.70.1155
MIME-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
Message-ID: <19980717072302761.AAC292@turing.hogent.be>
Sender: owner-csound-outgoing@maths.ex.ac.uk
Precedence: bulk

This is from Paul Ruston, he has difficulties with his mailserver and asked
me
to forward it.

later,
David.

 
> I hope I'm not displaying my ignorance here or encouraging the
> antagonism between the two of you but doesn't Jean Piche's formula
> produce  -1's and  0's instead of  -1's and +1's ?
> 
> k1 	rand	1
> k2 	= 	int(k1+1)-1
> 
> What do you think of these suggestions?  Is one better than the other?
> (variations of Erik Spjut's suggestion)
> 
> k1 rnd(1)
> k2=2*int(2*k1)-1
> 
> or 
> 
> k1 rand 1
> k2 = 2*int(2*abs(k1))-1
> 
> And I apologize.  I am one of those that does not fully understand the
> random functions (but I'm working on it).  Thanks again. 



Received: from stork.maths.bath.ac.uk by omphalos.maths.Bath.AC.UK id aa05592;
          17 Jul 98 8:24 BST
Received: from mercury.bath.ac.uk by stork.maths.Bath.AC.UK id aa10077;
          17 Jul 98 8:24 BST
Received: (qmail 2990 invoked from network); 17 Jul 1998 07:24:25 -0000
Received: from hermes.ex.ac.uk (HELO exeter.ac.uk) (144.173.6.14)
  by mercury.bath.ac.uk with SMTP; 17 Jul 1998 07:24:25 -0000
Received: from noether [144.173.8.10] by hermes via SMTP (IAA15290); Fri, 17 Jul 1998 08:19:51 +0100 (BST)
Received: from exeter.ac.uk by maths.ex.ac.uk; Fri, 17 Jul 1998 08:19:40 +0100
Received: from [193.121.99.70] by hermes via ESMTP (IAA13053); Fri, 17 Jul 1998 08:19:29 +0100 (BST)
Received: from turing.hogent.be ([193.190.88.183]) by hurricane.netgate.be
          (post.office MTA v2.0 0813 ID# 0-32575U60) with ESMTP id AAC292
          for ; Fri, 17 Jul 1998 09:24:34 +0200
From: David Schuyeteneer 
To: Csound List 
Subject: Fw: RANDOM NUMBERS
Date: Fri, 17 Jul 1998 09:00:47 +0200
X-MSMail-Priority: Normal
X-Priority: 3
X-Mailer: Microsoft Internet Mail 4.70.1155
MIME-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
Message-ID: <19980717072302761.AAC292@turing.hogent.be>
Sender: owner-csound-outgoing@maths.ex.ac.uk
Precedence: bulk

This is from Paul Ruston, he has difficulties with his mailserver and asked
me
to forward it.

later,
David.

 
> I hope I'm not displaying my ignorance here or encouraging the
> antagonism between the two of you but doesn't Jean Piche's formula
> produce  -1's and  0's instead of  -1's and +1's ?
> 
> k1 	rand	1
> k2 	= 	int(k1+1)-1
> 
> What do you think of these suggestions?  Is one better than the other?
> (variations of Erik Spjut's suggestion)
> 
> k1 rnd(1)
> k2=2*int(2*k1)-1
> 
> or 
> 
> k1 rand 1
> k2 = 2*int(2*abs(k1))-1
> 
> And I apologize.  I am one of those that does not fully understand the
> random functions (but I'm working on it).  Thanks again. 



Received: from stork.maths.bath.ac.uk by omphalos.maths.Bath.AC.UK id aa05592;
          17 Jul 98 8:24 BST
Received: from mercury.bath.ac.uk by stork.maths.Bath.AC.UK id aa10077;
          17 Jul 98 8:24 BST
Received: (qmail 2990 invoked from network); 17 Jul 1998 07:24:25 -0000
Received: from hermes.ex.ac.uk (HELO exeter.ac.uk) (144.173.6.14)
  by mercury.bath.ac.uk with SMTP; 17 Jul 1998 07:24:25 -0000
Received: from noether [144.173.8.10] by hermes via SMTP (IAA15290); Fri, 17 Jul 1998 08:19:51 +0100 (BST)
Received: from exeter.ac.uk by maths.ex.ac.uk; Fri, 17 Jul 1998 08:19:40 +0100
Received: from [193.121.99.70] by hermes via ESMTP (IAA13053); Fri, 17 Jul 1998 08:19:29 +0100 (BST)
Received: from turing.hogent.be ([193.190.88.183]) by hurricane.netgate.be
          (post.office MTA v2.0 0813 ID# 0-32575U60) with ESMTP id AAC292
          for ; Fri, 17 Jul 1998 09:24:34 +0200
From: David Schuyeteneer 
To: Csound List 
Subject: Fw: RANDOM NUMBERS
Date: Fri, 17 Jul 1998 09:00:47 +0200
X-MSMail-Priority: Normal
X-Priority: 3
X-Mailer: Microsoft Internet Mail 4.70.1155
MIME-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
Message-ID: <19980717072302761.AAC292@turing.hogent.be>
Sender: owner-csound-outgoing@maths.ex.ac.uk
Precedence: bulk

This is from Paul Ruston, he has difficulties with his mailserver and asked
me
to forward it.

later,
David.

 
> I hope I'm not displaying my ignorance here or encouraging the
> antagonism between the two of you but doesn't Jean Piche's formula
> produce  -1's and  0's instead of  -1's and +1's ?
> 
> k1 	rand	1
> k2 	= 	int(k1+1)-1
> 
> What do you think of these suggestions?  Is one better than the other?
> (variations of Erik Spjut's suggestion)
> 
> k1 rnd(1)
> k2=2*int(2*k1)-1
> 
> or 
> 
> k1 rand 1
> k2 = 2*int(2*abs(k1))-1
> 
> And I apologize.  I am one of those that does not fully understand the
> random functions (but I'm working on it).  Thanks again. 



Received: from stork.maths.bath.ac.uk by omphalos.maths.Bath.AC.UK id aa05592;
          17 Jul 98 8:24 BST
Received: from mercury.bath.ac.uk by stork.maths.Bath.AC.UK id aa10077;
          17 Jul 98 8:24 BST
Received: (qmail 2990 invoked from network); 17 Jul 1998 07:24:25 -0000
Received: from hermes.ex.ac.uk (HELO exeter.ac.uk) (144.173.6.14)
  by mercury.bath.ac.uk with SMTP; 17 Jul 1998 07:24:25 -0000
Received: from noether [144.173.8.10] by hermes via SMTP (IAA15290); Fri, 17 Jul 1998 08:19:51 +0100 (BST)
Received: from exeter.ac.uk by maths.ex.ac.uk; Fri, 17 Jul 1998 08:19:40 +0100
Received: from [193.121.99.70] by hermes via ESMTP (IAA13053); Fri, 17 Jul 1998 08:19:29 +0100 (BST)
Received: from turing.hogent.be ([193.190.88.183]) by hurricane.netgate.be
          (post.office MTA v2.0 0813 ID# 0-32575U60) with ESMTP id AAC292
          for ; Fri, 17 Jul 1998 09:24:34 +0200
From: David Schuyeteneer 
To: Csound List 
Subject: Fw: RANDOM NUMBERS
Date: Fri, 17 Jul 1998 09:00:47 +0200
X-MSMail-Priority: Normal
X-Priority: 3
X-Mailer: Microsoft Internet Mail 4.70.1155
MIME-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
Message-ID: <19980717072302761.AAC292@turing.hogent.be>
Sender: owner-csound-outgoing@maths.ex.ac.uk
Precedence: bulk

This is from Paul Ruston, he has difficulties with his mailserver and asked
me
to forward it.

later,
David.

 
> I hope I'm not displaying my ignorance here or encouraging the
> antagonism between the two of you but doesn't Jean Piche's formula
> produce  -1's and  0's instead of  -1's and +1's ?
> 
> k1 	rand	1
> k2 	= 	int(k1+1)-1
> 
> What do you think of these suggestions?  Is one better than the other?
> (variations of Erik Spjut's suggestion)
> 
> k1 rnd(1)
> k2=2*int(2*k1)-1
> 
> or 
> 
> k1 rand 1
> k2 = 2*int(2*abs(k1))-1
> 
> And I apologize.  I am one of those that does not fully understand the
> random functions (but I'm working on it).  Thanks again. 



Received: from stork.maths.bath.ac.uk by omphalos.maths.Bath.AC.UK id aa05592;
          17 Jul 98 8:24 BST
Received: from mercury.bath.ac.uk by stork.maths.Bath.AC.UK id aa10077;
          17 Jul 98 8:24 BST
Received: (qmail 2990 invoked from network); 17 Jul 1998 07:24:25 -0000
Received: from hermes.ex.ac.uk (HELO exeter.ac.uk) (144.173.6.14)
  by mercury.bath.ac.uk with SMTP; 17 Jul 1998 07:24:25 -0000
Received: from noether [144.173.8.10] by hermes via SMTP (IAA15290); Fri, 17 Jul 1998 08:19:51 +0100 (BST)
Received: from exeter.ac.uk by maths.ex.ac.uk; Fri, 17 Jul 1998 08:19:40 +0100
Received: from [193.121.99.70] by hermes via ESMTP (IAA13053); Fri, 17 Jul 1998 08:19:29 +0100 (BST)
Received: from turing.hogent.be ([193.190.88.183]) by hurricane.netgate.be
          (post.office MTA v2.0 0813 ID# 0-32575U60) with ESMTP id AAC292
          for ; Fri, 17 Jul 1998 09:24:34 +0200
From: David Schuyeteneer 
To: Csound List 
Subject: Fw: RANDOM NUMBERS
Date: Fri, 17 Jul 1998 09:00:47 +0200
X-MSMail-Priority: Normal
X-Priority: 3
X-Mailer: Microsoft Internet Mail 4.70.1155
MIME-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
Message-ID: <19980717072302761.AAC292@turing.hogent.be>
Sender: owner-csound-outgoing@maths.ex.ac.uk
Precedence: bulk

This is from Paul Ruston, he has difficulties with his mailserver and asked
me
to forward it.

later,
David.

 
> I hope I'm not displaying my ignorance here or encouraging the
> antagonism between the two of you but doesn't Jean Piche's formula
> produce  -1's and  0's instead of  -1's and +1's ?
> 
> k1 	rand	1
> k2 	= 	int(k1+1)-1
> 
> What do you think of these suggestions?  Is one better than the other?
> (variations of Erik Spjut's suggestion)
> 
> k1 rnd(1)
> k2=2*int(2*k1)-1
> 
> or 
> 
> k1 rand 1
> k2 = 2*int(2*abs(k1))-1
> 
> And I apologize.  I am one of those that does not fully understand the
> random functions (but I'm working on it).  Thanks again. 



Received: from stork.maths.bath.ac.uk by omphalos.maths.Bath.AC.UK id aa06718;
          17 Jul 98 9:57 BST
Received: from pat.bath.ac.uk by stork.maths.Bath.AC.UK id aa16840;
          17 Jul 98 9:57 BST
Received: (qmail 17184 invoked from network); 17 Jul 1998 08:57:42 -0000
Received: from hermes.ex.ac.uk (HELO exeter.ac.uk) (144.173.6.14)
  by pat.bath.ac.uk with SMTP; 17 Jul 1998 08:57:42 -0000
Received: from noether [144.173.8.10] by hermes via SMTP (JAA14479); Fri, 17 Jul 1998 09:53:44 +0100 (BST)
Received: from zeno.maths.exeter.ac.uk by maths.ex.ac.uk; Fri, 17 Jul 1998 09:53:25 +0100
From: james@maths.ex.ac.uk
Message-Id: <3690.199807170853@zeno.maths.exeter.ac.uk>
Subject: Re: Csound list postings
To: Eric Scheirer 
Date: Fri, 17 Jul 1998 09:53:24 +0100 (BST)
Cc: csound@maths.ex.ac.uk, electronica@maths.ex.ac.uk
In-Reply-To: <35AE1CFE.10E3C1DC@media.mit.edu> from "Eric Scheirer" at Jul 16, 98 11:32:14 am
X-Mailer: ELM [version 2.4 PL25]
MIME-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit
Sender: owner-csound-outgoing@maths.ex.ac.uk
Precedence: bulk

Eric Scheirer wrote
>
>Hi James,
>
>My postings to the Csound list don't seem to get through.
>At least, I don't seem to get copies.  Can you check to
>see that I'm properly subscribed?

Eric, the email machine had its operating system upgraded yesterday
Normally this wouldnt be a problem, there would be some disruption to
service but 99.9% of messages would get queued and delivered later.

However in this case the mail aliases database which is vital to the
email list server unexpectedly got deleted.
So when the machine came back and started accepting queued messages all
the traffic to csound bounced.

I got the alias file from backups and as far as I know the csound and
electronica email lists are running again.

Sorry for any inconvience, these things happen

-- 
http://www.maths.ex.ac.uk/~james/tekno
Watch out for "Medium Length Hair" EP on Science City(Sci 12)
Most Intelligent Customers Realize Our Software is Only for Fools and Teenagers



Received: from stork.maths.bath.ac.uk by omphalos.maths.Bath.AC.UK id aa05592;
          17 Jul 98 8:24 BST
Received: from mercury.bath.ac.uk by stork.maths.Bath.AC.UK id aa10077;
          17 Jul 98 8:24 BST
Received: (qmail 2990 invoked from network); 17 Jul 1998 07:24:25 -0000
Received: from hermes.ex.ac.uk (HELO exeter.ac.uk) (144.173.6.14)
  by mercury.bath.ac.uk with SMTP; 17 Jul 1998 07:24:25 -0000
Received: from noether [144.173.8.10] by hermes via SMTP (IAA15290); Fri, 17 Jul 1998 08:19:51 +0100 (BST)
Received: from exeter.ac.uk by maths.ex.ac.uk; Fri, 17 Jul 1998 08:19:40 +0100
Received: from [193.121.99.70] by hermes via ESMTP (IAA13053); Fri, 17 Jul 1998 08:19:29 +0100 (BST)
Received: from turing.hogent.be ([193.190.88.183]) by hurricane.netgate.be
          (post.office MTA v2.0 0813 ID# 0-32575U60) with ESMTP id AAC292
          for ; Fri, 17 Jul 1998 09:24:34 +0200
From: David Schuyeteneer 
To: Csound List 
Subject: Fw: RANDOM NUMBERS
Date: Fri, 17 Jul 1998 09:00:47 +0200
X-MSMail-Priority: Normal
X-Priority: 3
X-Mailer: Microsoft Internet Mail 4.70.1155
MIME-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
Message-ID: <19980717072302761.AAC292@turing.hogent.be>
Sender: owner-csound-outgoing@maths.ex.ac.uk
Precedence: bulk

This is from Paul Ruston, he has difficulties with his mailserver and asked
me
to forward it.

later,
David.

 
> I hope I'm not displaying my ignorance here or encouraging the
> antagonism between the two of you but doesn't Jean Piche's formula
> produce  -1's and  0's instead of  -1's and +1's ?
> 
> k1 	rand	1
> k2 	= 	int(k1+1)-1
> 
> What do you think of these suggestions?  Is one better than the other?
> (variations of Erik Spjut's suggestion)
> 
> k1 rnd(1)
> k2=2*int(2*k1)-1
> 
> or 
> 
> k1 rand 1
> k2 = 2*int(2*abs(k1))-1
> 
> And I apologize.  I am one of those that does not fully understand the
> random functions (but I'm working on it).  Thanks again. 



Received: from stork.maths.bath.ac.uk by omphalos.maths.Bath.AC.UK id aa06718;
          17 Jul 98 9:57 BST
Received: from pat.bath.ac.uk by stork.maths.Bath.AC.UK id aa16840;
          17 Jul 98 9:57 BST
Received: (qmail 17184 invoked from network); 17 Jul 1998 08:57:42 -0000
Received: from hermes.ex.ac.uk (HELO exeter.ac.uk) (144.173.6.14)
  by pat.bath.ac.uk with SMTP; 17 Jul 1998 08:57:42 -0000
Received: from noether [144.173.8.10] by hermes via SMTP (JAA14479); Fri, 17 Jul 1998 09:53:44 +0100 (BST)
Received: from zeno.maths.exeter.ac.uk by maths.ex.ac.uk; Fri, 17 Jul 1998 09:53:25 +0100
From: james@maths.ex.ac.uk
Message-Id: <3690.199807170853@zeno.maths.exeter.ac.uk>
Subject: Re: Csound list postings
To: Eric Scheirer 
Date: Fri, 17 Jul 1998 09:53:24 +0100 (BST)
Cc: csound@maths.ex.ac.uk, electronica@maths.ex.ac.uk
In-Reply-To: <35AE1CFE.10E3C1DC@media.mit.edu> from "Eric Scheirer" at Jul 16, 98 11:32:14 am
X-Mailer: ELM [version 2.4 PL25]
MIME-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit
Sender: owner-csound-outgoing@maths.ex.ac.uk
Precedence: bulk

Eric Scheirer wrote
>
>Hi James,
>
>My postings to the Csound list don't seem to get through.
>At least, I don't seem to get copies.  Can you check to
>see that I'm properly subscribed?

Eric, the email machine had its operating system upgraded yesterday
Normally this wouldnt be a problem, there would be some disruption to
service but 99.9% of messages would get queued and delivered later.

However in this case the mail aliases database which is vital to the
email list server unexpectedly got deleted.
So when the machine came back and started accepting queued messages all
the traffic to csound bounced.

I got the alias file from backups and as far as I know the csound and
electronica email lists are running again.

Sorry for any inconvience, these things happen

-- 
http://www.maths.ex.ac.uk/~james/tekno
Watch out for "Medium Length Hair" EP on Science City(Sci 12)
Most Intelligent Customers Realize Our Software is Only for Fools and Teenagers



Received: from stork.maths.bath.ac.uk by omphalos.maths.Bath.AC.UK id aa05592;
          17 Jul 98 8:24 BST
Received: from mercury.bath.ac.uk by stork.maths.Bath.AC.UK id aa10077;
          17 Jul 98 8:24 BST
Received: (qmail 2990 invoked from network); 17 Jul 1998 07:24:25 -0000
Received: from hermes.ex.ac.uk (HELO exeter.ac.uk) (144.173.6.14)
  by mercury.bath.ac.uk with SMTP; 17 Jul 1998 07:24:25 -0000
Received: from noether [144.173.8.10] by hermes via SMTP (IAA15290); Fri, 17 Jul 1998 08:19:51 +0100 (BST)
Received: from exeter.ac.uk by maths.ex.ac.uk; Fri, 17 Jul 1998 08:19:40 +0100
Received: from [193.121.99.70] by hermes via ESMTP (IAA13053); Fri, 17 Jul 1998 08:19:29 +0100 (BST)
Received: from turing.hogent.be ([193.190.88.183]) by hurricane.netgate.be
          (post.office MTA v2.0 0813 ID# 0-32575U60) with ESMTP id AAC292
          for ; Fri, 17 Jul 1998 09:24:34 +0200
From: David Schuyeteneer 
To: Csound List 
Subject: Fw: RANDOM NUMBERS
Date: Fri, 17 Jul 1998 09:00:47 +0200
X-MSMail-Priority: Normal
X-Priority: 3
X-Mailer: Microsoft Internet Mail 4.70.1155
MIME-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
Message-ID: <19980717072302761.AAC292@turing.hogent.be>
Sender: owner-csound-outgoing@maths.ex.ac.uk
Precedence: bulk

This is from Paul Ruston, he has difficulties with his mailserver and asked
me
to forward it.

later,
David.

 
> I hope I'm not displaying my ignorance here or encouraging the
> antagonism between the two of you but doesn't Jean Piche's formula
> produce  -1's and  0's instead of  -1's and +1's ?
> 
> k1 	rand	1
> k2 	= 	int(k1+1)-1
> 
> What do you think of these suggestions?  Is one better than the other?
> (variations of Erik Spjut's suggestion)
> 
> k1 rnd(1)
> k2=2*int(2*k1)-1
> 
> or 
> 
> k1 rand 1
> k2 = 2*int(2*abs(k1))-1
> 
> And I apologize.  I am one of those that does not fully understand the
> random functions (but I'm working on it).  Thanks again. 



Received: from stork.maths.bath.ac.uk by omphalos.maths.Bath.AC.UK id aa06718;
          17 Jul 98 9:57 BST
Received: from pat.bath.ac.uk by stork.maths.Bath.AC.UK id aa16840;
          17 Jul 98 9:57 BST
Received: (qmail 17184 invoked from network); 17 Jul 1998 08:57:42 -0000
Received: from hermes.ex.ac.uk (HELO exeter.ac.uk) (144.173.6.14)
  by pat.bath.ac.uk with SMTP; 17 Jul 1998 08:57:42 -0000
Received: from noether [144.173.8.10] by hermes via SMTP (JAA14479); Fri, 17 Jul 1998 09:53:44 +0100 (BST)
Received: from zeno.maths.exeter.ac.uk by maths.ex.ac.uk; Fri, 17 Jul 1998 09:53:25 +0100
From: james@maths.ex.ac.uk
Message-Id: <3690.199807170853@zeno.maths.exeter.ac.uk>
Subject: Re: Csound list postings
To: Eric Scheirer 
Date: Fri, 17 Jul 1998 09:53:24 +0100 (BST)
Cc: csound@maths.ex.ac.uk, electronica@maths.ex.ac.uk
In-Reply-To: <35AE1CFE.10E3C1DC@media.mit.edu> from "Eric Scheirer" at Jul 16, 98 11:32:14 am
X-Mailer: ELM [version 2.4 PL25]
MIME-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit
Sender: owner-csound-outgoing@maths.ex.ac.uk
Precedence: bulk

Eric Scheirer wrote
>
>Hi James,
>
>My postings to the Csound list don't seem to get through.
>At least, I don't seem to get copies.  Can you check to
>see that I'm properly subscribed?

Eric, the email machine had its operating system upgraded yesterday
Normally this wouldnt be a problem, there would be some disruption to
service but 99.9% of messages would get queued and delivered later.

However in this case the mail aliases database which is vital to the
email list server unexpectedly got deleted.
So when the machine came back and started accepting queued messages all
the traffic to csound bounced.

I got the alias file from backups and as far as I know the csound and
electronica email lists are running again.

Sorry for any inconvience, these things happen

-- 
http://www.maths.ex.ac.uk/~james/tekno
Watch out for "Medium Length Hair" EP on Science City(Sci 12)
Most Intelligent Customers Realize Our Software is Only for Fools and Teenagers



Received: from stork.maths.bath.ac.uk by omphalos.maths.Bath.AC.UK id aa05592;
          17 Jul 98 8:24 BST
Received: from mercury.bath.ac.uk by stork.maths.Bath.AC.UK id aa10077;
          17 Jul 98 8:24 BST
Received: (qmail 2990 invoked from network); 17 Jul 1998 07:24:25 -0000
Received: from hermes.ex.ac.uk (HELO exeter.ac.uk) (144.173.6.14)
  by mercury.bath.ac.uk with SMTP; 17 Jul 1998 07:24:25 -0000
Received: from noether [144.173.8.10] by hermes via SMTP (IAA15290); Fri, 17 Jul 1998 08:19:51 +0100 (BST)
Received: from exeter.ac.uk by maths.ex.ac.uk; Fri, 17 Jul 1998 08:19:40 +0100
Received: from [193.121.99.70] by hermes via ESMTP (IAA13053); Fri, 17 Jul 1998 08:19:29 +0100 (BST)
Received: from turing.hogent.be ([193.190.88.183]) by hurricane.netgate.be
          (post.office MTA v2.0 0813 ID# 0-32575U60) with ESMTP id AAC292
          for ; Fri, 17 Jul 1998 09:24:34 +0200
From: David Schuyeteneer 
To: Csound List 
Subject: Fw: RANDOM NUMBERS
Date: Fri, 17 Jul 1998 09:00:47 +0200
X-MSMail-Priority: Normal
X-Priority: 3
X-Mailer: Microsoft Internet Mail 4.70.1155
MIME-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
Message-ID: <19980717072302761.AAC292@turing.hogent.be>
Sender: owner-csound-outgoing@maths.ex.ac.uk
Precedence: bulk

This is from Paul Ruston, he has difficulties with his mailserver and asked
me
to forward it.

later,
David.

 
> I hope I'm not displaying my ignorance here or encouraging the
> antagonism between the two of you but doesn't Jean Piche's formula
> produce  -1's and  0's instead of  -1's and +1's ?
> 
> k1 	rand	1
> k2 	= 	int(k1+1)-1
> 
> What do you think of these suggestions?  Is one better than the other?
> (variations of Erik Spjut's suggestion)
> 
> k1 rnd(1)
> k2=2*int(2*k1)-1
> 
> or 
> 
> k1 rand 1
> k2 = 2*int(2*abs(k1))-1
> 
> And I apologize.  I am one of those that does not fully understand the
> random functions (but I'm working on it).  Thanks again. 



Received: from stork.maths.bath.ac.uk by omphalos.maths.Bath.AC.UK id aa06718;
          17 Jul 98 9:57 BST
Received: from pat.bath.ac.uk by stork.maths.Bath.AC.UK id aa16840;
          17 Jul 98 9:57 BST
Received: (qmail 17184 invoked from network); 17 Jul 1998 08:57:42 -0000
Received: from hermes.ex.ac.uk (HELO exeter.ac.uk) (144.173.6.14)
  by pat.bath.ac.uk with SMTP; 17 Jul 1998 08:57:42 -0000
Received: from noether [144.173.8.10] by hermes via SMTP (JAA14479); Fri, 17 Jul 1998 09:53:44 +0100 (BST)
Received: from zeno.maths.exeter.ac.uk by maths.ex.ac.uk; Fri, 17 Jul 1998 09:53:25 +0100
From: james@maths.ex.ac.uk
Message-Id: <3690.199807170853@zeno.maths.exeter.ac.uk>
Subject: Re: Csound list postings
To: Eric Scheirer 
Date: Fri, 17 Jul 1998 09:53:24 +0100 (BST)
Cc: csound@maths.ex.ac.uk, electronica@maths.ex.ac.uk
In-Reply-To: <35AE1CFE.10E3C1DC@media.mit.edu> from "Eric Scheirer" at Jul 16, 98 11:32:14 am
X-Mailer: ELM [version 2.4 PL25]
MIME-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit
Sender: owner-csound-outgoing@maths.ex.ac.uk
Precedence: bulk

Eric Scheirer wrote
>
>Hi James,
>
>My postings to the Csound list don't seem to get through.
>At least, I don't seem to get copies.  Can you check to
>see that I'm properly subscribed?

Eric, the email machine had its operating system upgraded yesterday
Normally this wouldnt be a problem, there would be some disruption to
service but 99.9% of messages would get queued and delivered later.

However in this case the mail aliases database which is vital to the
email list server unexpectedly got deleted.
So when the machine came back and started accepting queued messages all
the traffic to csound bounced.

I got the alias file from backups and as far as I know the csound and
electronica email lists are running again.

Sorry for any inconvience, these things happen

-- 
http://www.maths.ex.ac.uk/~james/tekno
Watch out for "Medium Length Hair" EP on Science City(Sci 12)
Most Intelligent Customers Realize Our Software is Only for Fools and Teenagers



Received: from stork.maths.bath.ac.uk by omphalos.maths.Bath.AC.UK id aa05592;
          17 Jul 98 8:24 BST
Received: from mercury.bath.ac.uk by stork.maths.Bath.AC.UK id aa10077;
          17 Jul 98 8:24 BST
Received: (qmail 2990 invoked from network); 17 Jul 1998 07:24:25 -0000
Received: from hermes.ex.ac.uk (HELO exeter.ac.uk) (144.173.6.14)
  by mercury.bath.ac.uk with SMTP; 17 Jul 1998 07:24:25 -0000
Received: from noether [144.173.8.10] by hermes via SMTP (IAA15290); Fri, 17 Jul 1998 08:19:51 +0100 (BST)
Received: from exeter.ac.uk by maths.ex.ac.uk; Fri, 17 Jul 1998 08:19:40 +0100
Received: from [193.121.99.70] by hermes via ESMTP (IAA13053); Fri, 17 Jul 1998 08:19:29 +0100 (BST)
Received: from turing.hogent.be ([193.190.88.183]) by hurricane.netgate.be
          (post.office MTA v2.0 0813 ID# 0-32575U60) with ESMTP id AAC292
          for ; Fri, 17 Jul 1998 09:24:34 +0200
From: David Schuyeteneer 
To: Csound List 
Subject: Fw: RANDOM NUMBERS
Date: Fri, 17 Jul 1998 09:00:47 +0200
X-MSMail-Priority: Normal
X-Priority: 3
X-Mailer: Microsoft Internet Mail 4.70.1155
MIME-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
Message-ID: <19980717072302761.AAC292@turing.hogent.be>
Sender: owner-csound-outgoing@maths.ex.ac.uk
Precedence: bulk

This is from Paul Ruston, he has difficulties with his mailserver and asked
me
to forward it.

later,
David.

 
> I hope I'm not displaying my ignorance here or encouraging the
> antagonism between the two of you but doesn't Jean Piche's formula
> produce  -1's and  0's instead of  -1's and +1's ?
> 
> k1 	rand	1
> k2 	= 	int(k1+1)-1
> 
> What do you think of these suggestions?  Is one better than the other?
> (variations of Erik Spjut's suggestion)
> 
> k1 rnd(1)
> k2=2*int(2*k1)-1
> 
> or 
> 
> k1 rand 1
> k2 = 2*int(2*abs(k1))-1
> 
> And I apologize.  I am one of those that does not fully understand the
> random functions (but I'm working on it).  Thanks again. 



Received: from stork.maths.bath.ac.uk by omphalos.maths.Bath.AC.UK id aa06718;
          17 Jul 98 9:57 BST
Received: from pat.bath.ac.uk by stork.maths.Bath.AC.UK id aa16840;
          17 Jul 98 9:57 BST
Received: (qmail 17184 invoked from network); 17 Jul 1998 08:57:42 -0000
Received: from hermes.ex.ac.uk (HELO exeter.ac.uk) (144.173.6.14)
  by pat.bath.ac.uk with SMTP; 17 Jul 1998 08:57:42 -0000
Received: from noether [144.173.8.10] by hermes via SMTP (JAA14479); Fri, 17 Jul 1998 09:53:44 +0100 (BST)
Received: from zeno.maths.exeter.ac.uk by maths.ex.ac.uk; Fri, 17 Jul 1998 09:53:25 +0100
From: james@maths.ex.ac.uk
Message-Id: <3690.199807170853@zeno.maths.exeter.ac.uk>
Subject: Re: Csound list postings
To: Eric Scheirer 
Date: Fri, 17 Jul 1998 09:53:24 +0100 (BST)
Cc: csound@maths.ex.ac.uk, electronica@maths.ex.ac.uk
In-Reply-To: <35AE1CFE.10E3C1DC@media.mit.edu> from "Eric Scheirer" at Jul 16, 98 11:32:14 am
X-Mailer: ELM [version 2.4 PL25]
MIME-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit
Sender: owner-csound-outgoing@maths.ex.ac.uk
Precedence: bulk

Eric Scheirer wrote
>
>Hi James,
>
>My postings to the Csound list don't seem to get through.
>At least, I don't seem to get copies.  Can you check to
>see that I'm properly subscribed?

Eric, the email machine had its operating system upgraded yesterday
Normally this wouldnt be a problem, there would be some disruption to
service but 99.9% of messages would get queued and delivered later.

However in this case the mail aliases database which is vital to the
email list server unexpectedly got deleted.
So when the machine came back and started accepting queued messages all
the traffic to csound bounced.

I got the alias file from backups and as far as I know the csound and
electronica email lists are running again.

Sorry for any inconvience, these things happen

-- 
http://www.maths.ex.ac.uk/~james/tekno
Watch out for "Medium Length Hair" EP on Science City(Sci 12)
Most Intelligent Customers Realize Our Software is Only for Fools and Teenagers



Received: from stork.maths.bath.ac.uk by omphalos.maths.Bath.AC.UK id aa05592;
          17 Jul 98 8:24 BST
Received: from mercury.bath.ac.uk by stork.maths.Bath.AC.UK id aa10077;
          17 Jul 98 8:24 BST
Received: (qmail 2990 invoked from network); 17 Jul 1998 07:24:25 -0000
Received: from hermes.ex.ac.uk (HELO exeter.ac.uk) (144.173.6.14)
  by mercury.bath.ac.uk with SMTP; 17 Jul 1998 07:24:25 -0000
Received: from noether [144.173.8.10] by hermes via SMTP (IAA15290); Fri, 17 Jul 1998 08:19:51 +0100 (BST)
Received: from exeter.ac.uk by maths.ex.ac.uk; Fri, 17 Jul 1998 08:19:40 +0100
Received: from [193.121.99.70] by hermes via ESMTP (IAA13053); Fri, 17 Jul 1998 08:19:29 +0100 (BST)
Received: from turing.hogent.be ([193.190.88.183]) by hurricane.netgate.be
          (post.office MTA v2.0 0813 ID# 0-32575U60) with ESMTP id AAC292
          for ; Fri, 17 Jul 1998 09:24:34 +0200
From: David Schuyeteneer 
To: Csound List 
Subject: Fw: RANDOM NUMBERS
Date: Fri, 17 Jul 1998 09:00:47 +0200
X-MSMail-Priority: Normal
X-Priority: 3
X-Mailer: Microsoft Internet Mail 4.70.1155
MIME-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
Message-ID: <19980717072302761.AAC292@turing.hogent.be>
Sender: owner-csound-outgoing@maths.ex.ac.uk
Precedence: bulk

This is from Paul Ruston, he has difficulties with his mailserver and asked
me
to forward it.

later,
David.

 
> I hope I'm not displaying my ignorance here or encouraging the
> antagonism between the two of you but doesn't Jean Piche's formula
> produce  -1's and  0's instead of  -1's and +1's ?
> 
> k1 	rand	1
> k2 	= 	int(k1+1)-1
> 
> What do you think of these suggestions?  Is one better than the other?
> (variations of Erik Spjut's suggestion)
> 
> k1 rnd(1)
> k2=2*int(2*k1)-1
> 
> or 
> 
> k1 rand 1
> k2 = 2*int(2*abs(k1))-1
> 
> And I apologize.  I am one of those that does not fully understand the
> random functions (but I'm working on it).  Thanks again. 



Received: from stork.maths.bath.ac.uk by omphalos.maths.Bath.AC.UK id aa06718;
          17 Jul 98 9:57 BST
Received: from pat.bath.ac.uk by stork.maths.Bath.AC.UK id aa16840;
          17 Jul 98 9:57 BST
Received: (qmail 17184 invoked from network); 17 Jul 1998 08:57:42 -0000
Received: from hermes.ex.ac.uk (HELO exeter.ac.uk) (144.173.6.14)
  by pat.bath.ac.uk with SMTP; 17 Jul 1998 08:57:42 -0000
Received: from noether [144.173.8.10] by hermes via SMTP (JAA14479); Fri, 17 Jul 1998 09:53:44 +0100 (BST)
Received: from zeno.maths.exeter.ac.uk by maths.ex.ac.uk; Fri, 17 Jul 1998 09:53:25 +0100
From: james@maths.ex.ac.uk
Message-Id: <3690.199807170853@zeno.maths.exeter.ac.uk>
Subject: Re: Csound list postings
To: Eric Scheirer 
Date: Fri, 17 Jul 1998 09:53:24 +0100 (BST)
Cc: csound@maths.ex.ac.uk, electronica@maths.ex.ac.uk
In-Reply-To: <35AE1CFE.10E3C1DC@media.mit.edu> from "Eric Scheirer" at Jul 16, 98 11:32:14 am
X-Mailer: ELM [version 2.4 PL25]
MIME-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit
Sender: owner-csound-outgoing@maths.ex.ac.uk
Precedence: bulk

Eric Scheirer wrote
>
>Hi James,
>
>My postings to the Csound list don't seem to get through.
>At least, I don't seem to get copies.  Can you check to
>see that I'm properly subscribed?

Eric, the email machine had its operating system upgraded yesterday
Normally this wouldnt be a problem, there would be some disruption to
service but 99.9% of messages would get queued and delivered later.

However in this case the mail aliases database which is vital to the
email list server unexpectedly got deleted.
So when the machine came back and started accepting queued messages all
the traffic to csound bounced.

I got the alias file from backups and as far as I know the csound and
electronica email lists are running again.

Sorry for any inconvience, these things happen

-- 
http://www.maths.ex.ac.uk/~james/tekno
Watch out for "Medium Length Hair" EP on Science City(Sci 12)
Most Intelligent Customers Realize Our Software is Only for Fools and Teenagers



Received: from stork.maths.bath.ac.uk by omphalos.maths.Bath.AC.UK id aa05592;
          17 Jul 98 8:24 BST
Received: from mercury.bath.ac.uk by stork.maths.Bath.AC.UK id aa10077;
          17 Jul 98 8:24 BST
Received: (qmail 2990 invoked from network); 17 Jul 1998 07:24:25 -0000
Received: from hermes.ex.ac.uk (HELO exeter.ac.uk) (144.173.6.14)
  by mercury.bath.ac.uk with SMTP; 17 Jul 1998 07:24:25 -0000
Received: from noether [144.173.8.10] by hermes via SMTP (IAA15290); Fri, 17 Jul 1998 08:19:51 +0100 (BST)
Received: from exeter.ac.uk by maths.ex.ac.uk; Fri, 17 Jul 1998 08:19:40 +0100
Received: from [193.121.99.70] by hermes via ESMTP (IAA13053); Fri, 17 Jul 1998 08:19:29 +0100 (BST)
Received: from turing.hogent.be ([193.190.88.183]) by hurricane.netgate.be
          (post.office MTA v2.0 0813 ID# 0-32575U60) with ESMTP id AAC292
          for ; Fri, 17 Jul 1998 09:24:34 +0200
From: David Schuyeteneer 
To: Csound List 
Subject: Fw: RANDOM NUMBERS
Date: Fri, 17 Jul 1998 09:00:47 +0200
X-MSMail-Priority: Normal
X-Priority: 3
X-Mailer: Microsoft Internet Mail 4.70.1155
MIME-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
Message-ID: <19980717072302761.AAC292@turing.hogent.be>
Sender: owner-csound-outgoing@maths.ex.ac.uk
Precedence: bulk

This is from Paul Ruston, he has difficulties with his mailserver and asked
me
to forward it.

later,
David.

 
> I hope I'm not displaying my ignorance here or encouraging the
> antagonism between the two of you but doesn't Jean Piche's formula
> produce  -1's and  0's instead of  -1's and +1's ?
> 
> k1 	rand	1
> k2 	= 	int(k1+1)-1
> 
> What do you think of these suggestions?  Is one better than the other?
> (variations of Erik Spjut's suggestion)
> 
> k1 rnd(1)
> k2=2*int(2*k1)-1
> 
> or 
> 
> k1 rand 1
> k2 = 2*int(2*abs(k1))-1
> 
> And I apologize.  I am one of those that does not fully understand the
> random functions (but I'm working on it).  Thanks again. 



Received: from stork.maths.bath.ac.uk by omphalos.maths.Bath.AC.UK id aa06718;
          17 Jul 98 9:57 BST
Received: from pat.bath.ac.uk by stork.maths.Bath.AC.UK id aa16840;
          17 Jul 98 9:57 BST
Received: (qmail 17184 invoked from network); 17 Jul 1998 08:57:42 -0000
Received: from hermes.ex.ac.uk (HELO exeter.ac.uk) (144.173.6.14)
  by pat.bath.ac.uk with SMTP; 17 Jul 1998 08:57:42 -0000
Received: from noether [144.173.8.10] by hermes via SMTP (JAA14479); Fri, 17 Jul 1998 09:53:44 +0100 (BST)
Received: from zeno.maths.exeter.ac.uk by maths.ex.ac.uk; Fri, 17 Jul 1998 09:53:25 +0100
From: james@maths.ex.ac.uk
Message-Id: <3690.199807170853@zeno.maths.exeter.ac.uk>
Subject: Re: Csound list postings
To: Eric Scheirer 
Date: Fri, 17 Jul 1998 09:53:24 +0100 (BST)
Cc: csound@maths.ex.ac.uk, electronica@maths.ex.ac.uk
In-Reply-To: <35AE1CFE.10E3C1DC@media.mit.edu> from "Eric Scheirer" at Jul 16, 98 11:32:14 am
X-Mailer: ELM [version 2.4 PL25]
MIME-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit
Sender: owner-csound-outgoing@maths.ex.ac.uk
Precedence: bulk

Eric Scheirer wrote
>
>Hi James,
>
>My postings to the Csound list don't seem to get through.
>At least, I don't seem to get copies.  Can you check to
>see that I'm properly subscribed?

Eric, the email machine had its operating system upgraded yesterday
Normally this wouldnt be a problem, there would be some disruption to
service but 99.9% of messages would get queued and delivered later.

However in this case the mail aliases database which is vital to the
email list server unexpectedly got deleted.
So when the machine came back and started accepting queued messages all
the traffic to csound bounced.

I got the alias file from backups and as far as I know the csound and
electronica email lists are running again.

Sorry for any inconvience, these things happen

-- 
http://www.maths.ex.ac.uk/~james/tekno
Watch out for "Medium Length Hair" EP on Science City(Sci 12)
Most Intelligent Customers Realize Our Software is Only for Fools and Teenagers



Received: from stork.maths.bath.ac.uk by omphalos.maths.Bath.AC.UK id aa05592;
          17 Jul 98 8:24 BST
Received: from mercury.bath.ac.uk by stork.maths.Bath.AC.UK id aa10077;
          17 Jul 98 8:24 BST
Received: (qmail 2990 invoked from network); 17 Jul 1998 07:24:25 -0000
Received: from hermes.ex.ac.uk (HELO exeter.ac.uk) (144.173.6.14)
  by mercury.bath.ac.uk with SMTP; 17 Jul 1998 07:24:25 -0000
Received: from noether [144.173.8.10] by hermes via SMTP (IAA15290); Fri, 17 Jul 1998 08:19:51 +0100 (BST)
Received: from exeter.ac.uk by maths.ex.ac.uk; Fri, 17 Jul 1998 08:19:40 +0100
Received: from [193.121.99.70] by hermes via ESMTP (IAA13053); Fri, 17 Jul 1998 08:19:29 +0100 (BST)
Received: from turing.hogent.be ([193.190.88.183]) by hurricane.netgate.be
          (post.office MTA v2.0 0813 ID# 0-32575U60) with ESMTP id AAC292
          for ; Fri, 17 Jul 1998 09:24:34 +0200
From: David Schuyeteneer 
To: Csound List 
Subject: Fw: RANDOM NUMBERS
Date: Fri, 17 Jul 1998 09:00:47 +0200
X-MSMail-Priority: Normal
X-Priority: 3
X-Mailer: Microsoft Internet Mail 4.70.1155
MIME-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
Message-ID: <19980717072302761.AAC292@turing.hogent.be>
Sender: owner-csound-outgoing@maths.ex.ac.uk
Precedence: bulk

This is from Paul Ruston, he has difficulties with his mailserver and asked
me
to forward it.

later,
David.

 
> I hope I'm not displaying my ignorance here or encouraging the
> antagonism between the two of you but doesn't Jean Piche's formula
> produce  -1's and  0's instead of  -1's and +1's ?
> 
> k1 	rand	1
> k2 	= 	int(k1+1)-1
> 
> What do you think of these suggestions?  Is one better than the other?
> (variations of Erik Spjut's suggestion)
> 
> k1 rnd(1)
> k2=2*int(2*k1)-1
> 
> or 
> 
> k1 rand 1
> k2 = 2*int(2*abs(k1))-1
> 
> And I apologize.  I am one of those that does not fully understand the
> random functions (but I'm working on it).  Thanks again. 



Received: from stork.maths.bath.ac.uk by omphalos.maths.Bath.AC.UK id aa06718;
          17 Jul 98 9:57 BST
Received: from pat.bath.ac.uk by stork.maths.Bath.AC.UK id aa16840;
          17 Jul 98 9:57 BST
Received: (qmail 17184 invoked from network); 17 Jul 1998 08:57:42 -0000
Received: from hermes.ex.ac.uk (HELO exeter.ac.uk) (144.173.6.14)
  by pat.bath.ac.uk with SMTP; 17 Jul 1998 08:57:42 -0000
Received: from noether [144.173.8.10] by hermes via SMTP (JAA14479); Fri, 17 Jul 1998 09:53:44 +0100 (BST)
Received: from zeno.maths.exeter.ac.uk by maths.ex.ac.uk; Fri, 17 Jul 1998 09:53:25 +0100
From: james@maths.ex.ac.uk
Message-Id: <3690.199807170853@zeno.maths.exeter.ac.uk>
Subject: Re: Csound list postings
To: Eric Scheirer 
Date: Fri, 17 Jul 1998 09:53:24 +0100 (BST)
Cc: csound@maths.ex.ac.uk, electronica@maths.ex.ac.uk
In-Reply-To: <35AE1CFE.10E3C1DC@media.mit.edu> from "Eric Scheirer" at Jul 16, 98 11:32:14 am
X-Mailer: ELM [version 2.4 PL25]
MIME-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit
Sender: owner-csound-outgoing@maths.ex.ac.uk
Precedence: bulk

Eric Scheirer wrote
>
>Hi James,
>
>My postings to the Csound list don't seem to get through.
>At least, I don't seem to get copies.  Can you check to
>see that I'm properly subscribed?

Eric, the email machine had its operating system upgraded yesterday
Normally this wouldnt be a problem, there would be some disruption to
service but 99.9% of messages would get queued and delivered later.

However in this case the mail aliases database which is vital to the
email list server unexpectedly got deleted.
So when the machine came back and started accepting queued messages all
the traffic to csound bounced.

I got the alias file from backups and as far as I know the csound and
electronica email lists are running again.

Sorry for any inconvience, these things happen

-- 
http://www.maths.ex.ac.uk/~james/tekno
Watch out for "Medium Length Hair" EP on Science City(Sci 12)
Most Intelligent Customers Realize Our Software is Only for Fools and Teenagers



Received: from stork.maths.bath.ac.uk by omphalos.maths.Bath.AC.UK id aa05592;
          17 Jul 98 8:24 BST
Received: from mercury.bath.ac.uk by stork.maths.Bath.AC.UK id aa10077;
          17 Jul 98 8:24 BST
Received: (qmail 2990 invoked from network); 17 Jul 1998 07:24:25 -0000
Received: from hermes.ex.ac.uk (HELO exeter.ac.uk) (144.173.6.14)
  by mercury.bath.ac.uk with SMTP; 17 Jul 1998 07:24:25 -0000
Received: from noether [144.173.8.10] by hermes via SMTP (IAA15290); Fri, 17 Jul 1998 08:19:51 +0100 (BST)
Received: from exeter.ac.uk by maths.ex.ac.uk; Fri, 17 Jul 1998 08:19:40 +0100
Received: from [193.121.99.70] by hermes via ESMTP (IAA13053); Fri, 17 Jul 1998 08:19:29 +0100 (BST)
Received: from turing.hogent.be ([193.190.88.183]) by hurricane.netgate.be
          (post.office MTA v2.0 0813 ID# 0-32575U60) with ESMTP id AAC292
          for ; Fri, 17 Jul 1998 09:24:34 +0200
From: David Schuyeteneer 
To: Csound List 
Subject: Fw: RANDOM NUMBERS
Date: Fri, 17 Jul 1998 09:00:47 +0200
X-MSMail-Priority: Normal
X-Priority: 3
X-Mailer: Microsoft Internet Mail 4.70.1155
MIME-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
Message-ID: <19980717072302761.AAC292@turing.hogent.be>
Sender: owner-csound-outgoing@maths.ex.ac.uk
Precedence: bulk

This is from Paul Ruston, he has difficulties with his mailserver and asked
me
to forward it.

later,
David.

 
> I hope I'm not displaying my ignorance here or encouraging the
> antagonism between the two of you but doesn't Jean Piche's formula
> produce  -1's and  0's instead of  -1's and +1's ?
> 
> k1 	rand	1
> k2 	= 	int(k1+1)-1
> 
> What do you think of these suggestions?  Is one better than the other?
> (variations of Erik Spjut's suggestion)
> 
> k1 rnd(1)
> k2=2*int(2*k1)-1
> 
> or 
> 
> k1 rand 1
> k2 = 2*int(2*abs(k1))-1
> 
> And I apologize.  I am one of those that does not fully understand the
> random functions (but I'm working on it).  Thanks again. 



Received: from stork.maths.bath.ac.uk by omphalos.maths.Bath.AC.UK id aa06718;
          17 Jul 98 9:57 BST
Received: from pat.bath.ac.uk by stork.maths.Bath.AC.UK id aa16840;
          17 Jul 98 9:57 BST
Received: (qmail 17184 invoked from network); 17 Jul 1998 08:57:42 -0000
Received: from hermes.ex.ac.uk (HELO exeter.ac.uk) (144.173.6.14)
  by pat.bath.ac.uk with SMTP; 17 Jul 1998 08:57:42 -0000
Received: from noether [144.173.8.10] by hermes via SMTP (JAA14479); Fri, 17 Jul 1998 09:53:44 +0100 (BST)
Received: from zeno.maths.exeter.ac.uk by maths.ex.ac.uk; Fri, 17 Jul 1998 09:53:25 +0100
From: james@maths.ex.ac.uk
Message-Id: <3690.199807170853@zeno.maths.exeter.ac.uk>
Subject: Re: Csound list postings
To: Eric Scheirer 
Date: Fri, 17 Jul 1998 09:53:24 +0100 (BST)
Cc: csound@maths.ex.ac.uk, electronica@maths.ex.ac.uk
In-Reply-To: <35AE1CFE.10E3C1DC@media.mit.edu> from "Eric Scheirer" at Jul 16, 98 11:32:14 am
X-Mailer: ELM [version 2.4 PL25]
MIME-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit
Sender: owner-csound-outgoing@maths.ex.ac.uk
Precedence: bulk

Eric Scheirer wrote
>
>Hi James,
>
>My postings to the Csound list don't seem to get through.
>At least, I don't seem to get copies.  Can you check to
>see that I'm properly subscribed?

Eric, the email machine had its operating system upgraded yesterday
Normally this wouldnt be a problem, there would be some disruption to
service but 99.9% of messages would get queued and delivered later.

However in this case the mail aliases database which is vital to the
email list server unexpectedly got deleted.
So when the machine came back and started accepting queued messages all
the traffic to csound bounced.

I got the alias file from backups and as far as I know the csound and
electronica email lists are running again.

Sorry for any inconvience, these things happen

-- 
http://www.maths.ex.ac.uk/~james/tekno
Watch out for "Medium Length Hair" EP on Science City(Sci 12)
Most Intelligent Customers Realize Our Software is Only for Fools and Teenagers



Received: from stork.maths.bath.ac.uk by omphalos.maths.Bath.AC.UK id aa05592;
          17 Jul 98 8:24 BST
Received: from mercury.bath.ac.uk by stork.maths.Bath.AC.UK id aa10077;
          17 Jul 98 8:24 BST
Received: (qmail 2990 invoked from network); 17 Jul 1998 07:24:25 -0000
Received: from hermes.ex.ac.uk (HELO exeter.ac.uk) (144.173.6.14)
  by mercury.bath.ac.uk with SMTP; 17 Jul 1998 07:24:25 -0000
Received: from noether [144.173.8.10] by hermes via SMTP (IAA15290); Fri, 17 Jul 1998 08:19:51 +0100 (BST)
Received: from exeter.ac.uk by maths.ex.ac.uk; Fri, 17 Jul 1998 08:19:40 +0100
Received: from [193.121.99.70] by hermes via ESMTP (IAA13053); Fri, 17 Jul 1998 08:19:29 +0100 (BST)
Received: from turing.hogent.be ([193.190.88.183]) by hurricane.netgate.be
          (post.office MTA v2.0 0813 ID# 0-32575U60) with ESMTP id AAC292
          for ; Fri, 17 Jul 1998 09:24:34 +0200
From: David Schuyeteneer 
To: Csound List 
Subject: Fw: RANDOM NUMBERS
Date: Fri, 17 Jul 1998 09:00:47 +0200
X-MSMail-Priority: Normal
X-Priority: 3
X-Mailer: Microsoft Internet Mail 4.70.1155
MIME-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
Message-ID: <19980717072302761.AAC292@turing.hogent.be>
Sender: owner-csound-outgoing@maths.ex.ac.uk
Precedence: bulk

This is from Paul Ruston, he has difficulties with his mailserver and asked
me
to forward it.

later,
David.

 
> I hope I'm not displaying my ignorance here or encouraging the
> antagonism between the two of you but doesn't Jean Piche's formula
> produce  -1's and  0's instead of  -1's and +1's ?
> 
> k1 	rand	1
> k2 	= 	int(k1+1)-1
> 
> What do you think of these suggestions?  Is one better than the other?
> (variations of Erik Spjut's suggestion)
> 
> k1 rnd(1)
> k2=2*int(2*k1)-1
> 
> or 
> 
> k1 rand 1
> k2 = 2*int(2*abs(k1))-1
> 
> And I apologize.  I am one of those that does not fully understand the
> random functions (but I'm working on it).  Thanks again. 



Received: from stork.maths.bath.ac.uk by omphalos.maths.Bath.AC.UK id aa06718;
          17 Jul 98 9:57 BST
Received: from pat.bath.ac.uk by stork.maths.Bath.AC.UK id aa16840;
          17 Jul 98 9:57 BST
Received: (qmail 17184 invoked from network); 17 Jul 1998 08:57:42 -0000
Received: from hermes.ex.ac.uk (HELO exeter.ac.uk) (144.173.6.14)
  by pat.bath.ac.uk with SMTP; 17 Jul 1998 08:57:42 -0000
Received: from noether [144.173.8.10] by hermes via SMTP (JAA14479); Fri, 17 Jul 1998 09:53:44 +0100 (BST)
Received: from zeno.maths.exeter.ac.uk by maths.ex.ac.uk; Fri, 17 Jul 1998 09:53:25 +0100
From: james@maths.ex.ac.uk
Message-Id: <3690.199807170853@zeno.maths.exeter.ac.uk>
Subject: Re: Csound list postings
To: Eric Scheirer 
Date: Fri, 17 Jul 1998 09:53:24 +0100 (BST)
Cc: csound@maths.ex.ac.uk, electronica@maths.ex.ac.uk
In-Reply-To: <35AE1CFE.10E3C1DC@media.mit.edu> from "Eric Scheirer" at Jul 16, 98 11:32:14 am
X-Mailer: ELM [version 2.4 PL25]
MIME-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit
Sender: owner-csound-outgoing@maths.ex.ac.uk
Precedence: bulk

Eric Scheirer wrote
>
>Hi James,
>
>My postings to the Csound list don't seem to get through.
>At least, I don't seem to get copies.  Can you check to
>see that I'm properly subscribed?

Eric, the email machine had its operating system upgraded yesterday
Normally this wouldnt be a problem, there would be some disruption to
service but 99.9% of messages would get queued and delivered later.

However in this case the mail aliases database which is vital to the
email list server unexpectedly got deleted.
So when the machine came back and started accepting queued messages all
the traffic to csound bounced.

I got the alias file from backups and as far as I know the csound and
electronica email lists are running again.

Sorry for any inconvience, these things happen

-- 
http://www.maths.ex.ac.uk/~james/tekno
Watch out for "Medium Length Hair" EP on Science City(Sci 12)
Most Intelligent Customers Realize Our Software is Only for Fools and Teenagers



Received: from stork.maths.bath.ac.uk by omphalos.maths.Bath.AC.UK id aa05592;
          17 Jul 98 8:24 BST
Received: from mercury.bath.ac.uk by stork.maths.Bath.AC.UK id aa10077;
          17 Jul 98 8:24 BST
Received: (qmail 2990 invoked from network); 17 Jul 1998 07:24:25 -0000
Received: from hermes.ex.ac.uk (HELO exeter.ac.uk) (144.173.6.14)
  by mercury.bath.ac.uk with SMTP; 17 Jul 1998 07:24:25 -0000
Received: from noether [144.173.8.10] by hermes via SMTP (IAA15290); Fri, 17 Jul 1998 08:19:51 +0100 (BST)
Received: from exeter.ac.uk by maths.ex.ac.uk; Fri, 17 Jul 1998 08:19:40 +0100
Received: from [193.121.99.70] by hermes via ESMTP (IAA13053); Fri, 17 Jul 1998 08:19:29 +0100 (BST)
Received: from turing.hogent.be ([193.190.88.183]) by hurricane.netgate.be
          (post.office MTA v2.0 0813 ID# 0-32575U60) with ESMTP id AAC292
          for ; Fri, 17 Jul 1998 09:24:34 +0200
From: David Schuyeteneer 
To: Csound List 
Subject: Fw: RANDOM NUMBERS
Date: Fri, 17 Jul 1998 09:00:47 +0200
X-MSMail-Priority: Normal
X-Priority: 3
X-Mailer: Microsoft Internet Mail 4.70.1155
MIME-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
Message-ID: <19980717072302761.AAC292@turing.hogent.be>
Sender: owner-csound-outgoing@maths.ex.ac.uk
Precedence: bulk

This is from Paul Ruston, he has difficulties with his mailserver and asked
me
to forward it.

later,
David.

 
> I hope I'm not displaying my ignorance here or encouraging the
> antagonism between the two of you but doesn't Jean Piche's formula
> produce  -1's and  0's instead of  -1's and +1's ?
> 
> k1 	rand	1
> k2 	= 	int(k1+1)-1
> 
> What do you think of these suggestions?  Is one better than the other?
> (variations of Erik Spjut's suggestion)
> 
> k1 rnd(1)
> k2=2*int(2*k1)-1
> 
> or 
> 
> k1 rand 1
> k2 = 2*int(2*abs(k1))-1
> 
> And I apologize.  I am one of those that does not fully understand the
> random functions (but I'm working on it).  Thanks again. 



Received: from stork.maths.bath.ac.uk by omphalos.maths.Bath.AC.UK id aa06718;
          17 Jul 98 9:57 BST
Received: from pat.bath.ac.uk by stork.maths.Bath.AC.UK id aa16840;
          17 Jul 98 9:57 BST
Received: (qmail 17184 invoked from network); 17 Jul 1998 08:57:42 -0000
Received: from hermes.ex.ac.uk (HELO exeter.ac.uk) (144.173.6.14)
  by pat.bath.ac.uk with SMTP; 17 Jul 1998 08:57:42 -0000
Received: from noether [144.173.8.10] by hermes via SMTP (JAA14479); Fri, 17 Jul 1998 09:53:44 +0100 (BST)
Received: from zeno.maths.exeter.ac.uk by maths.ex.ac.uk; Fri, 17 Jul 1998 09:53:25 +0100
From: james@maths.ex.ac.uk
Message-Id: <3690.199807170853@zeno.maths.exeter.ac.uk>
Subject: Re: Csound list postings
To: Eric Scheirer 
Date: Fri, 17 Jul 1998 09:53:24 +0100 (BST)
Cc: csound@maths.ex.ac.uk, electronica@maths.ex.ac.uk
In-Reply-To: <35AE1CFE.10E3C1DC@media.mit.edu> from "Eric Scheirer" at Jul 16, 98 11:32:14 am
X-Mailer: ELM [version 2.4 PL25]
MIME-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit
Sender: owner-csound-outgoing@maths.ex.ac.uk
Precedence: bulk

Eric Scheirer wrote
>
>Hi James,
>
>My postings to the Csound list don't seem to get through.
>At least, I don't seem to get copies.  Can you check to
>see that I'm properly subscribed?

Eric, the email machine had its operating system upgraded yesterday
Normally this wouldnt be a problem, there would be some disruption to
service but 99.9% of messages would get queued and delivered later.

However in this case the mail aliases database which is vital to the
email list server unexpectedly got deleted.
So when the machine came back and started accepting queued messages all
the traffic to csound bounced.

I got the alias file from backups and as far as I know the csound and
electronica email lists are running again.

Sorry for any inconvience, these things happen

-- 
http://www.maths.ex.ac.uk/~james/tekno
Watch out for "Medium Length Hair" EP on Science City(Sci 12)
Most Intelligent Customers Realize Our Software is Only for Fools and Teenagers



Received: from stork.maths.bath.ac.uk by omphalos.maths.Bath.AC.UK id aa05592;
          17 Jul 98 8:24 BST
Received: from mercury.bath.ac.uk by stork.maths.Bath.AC.UK id aa10077;
          17 Jul 98 8:24 BST
Received: (qmail 2990 invoked from network); 17 Jul 1998 07:24:25 -0000
Received: from hermes.ex.ac.uk (HELO exeter.ac.uk) (144.173.6.14)
  by mercury.bath.ac.uk with SMTP; 17 Jul 1998 07:24:25 -0000
Received: from noether [144.173.8.10] by hermes via SMTP (IAA15290); Fri, 17 Jul 1998 08:19:51 +0100 (BST)
Received: from exeter.ac.uk by maths.ex.ac.uk; Fri, 17 Jul 1998 08:19:40 +0100
Received: from [193.121.99.70] by hermes via ESMTP (IAA13053); Fri, 17 Jul 1998 08:19:29 +0100 (BST)
Received: from turing.hogent.be ([193.190.88.183]) by hurricane.netgate.be
          (post.office MTA v2.0 0813 ID# 0-32575U60) with ESMTP id AAC292
          for ; Fri, 17 Jul 1998 09:24:34 +0200
From: David Schuyeteneer 
To: Csound List 
Subject: Fw: RANDOM NUMBERS
Date: Fri, 17 Jul 1998 09:00:47 +0200
X-MSMail-Priority: Normal
X-Priority: 3
X-Mailer: Microsoft Internet Mail 4.70.1155
MIME-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
Message-ID: <19980717072302761.AAC292@turing.hogent.be>
Sender: owner-csound-outgoing@maths.ex.ac.uk
Precedence: bulk

This is from Paul Ruston, he has difficulties with his mailserver and asked
me
to forward it.

later,
David.

 
> I hope I'm not displaying my ignorance here or encouraging the
> antagonism between the two of you but doesn't Jean Piche's formula
> produce  -1's and  0's instead of  -1's and +1's ?
> 
> k1 	rand	1
> k2 	= 	int(k1+1)-1
> 
> What do you think of these suggestions?  Is one better than the other?
> (variations of Erik Spjut's suggestion)
> 
> k1 rnd(1)
> k2=2*int(2*k1)-1
> 
> or 
> 
> k1 rand 1
> k2 = 2*int(2*abs(k1))-1
> 
> And I apologize.  I am one of those that does not fully understand the
> random functions (but I'm working on it).  Thanks again. 



Received: from stork.maths.bath.ac.uk by omphalos.maths.Bath.AC.UK id aa06718;
          17 Jul 98 9:57 BST
Received: from pat.bath.ac.uk by stork.maths.Bath.AC.UK id aa16840;
          17 Jul 98 9:57 BST
Received: (qmail 17184 invoked from network); 17 Jul 1998 08:57:42 -0000
Received: from hermes.ex.ac.uk (HELO exeter.ac.uk) (144.173.6.14)
  by pat.bath.ac.uk with SMTP; 17 Jul 1998 08:57:42 -0000
Received: from noether [144.173.8.10] by hermes via SMTP (JAA14479); Fri, 17 Jul 1998 09:53:44 +0100 (BST)
Received: from zeno.maths.exeter.ac.uk by maths.ex.ac.uk; Fri, 17 Jul 1998 09:53:25 +0100
From: james@maths.ex.ac.uk
Message-Id: <3690.199807170853@zeno.maths.exeter.ac.uk>
Subject: Re: Csound list postings
To: Eric Scheirer 
Date: Fri, 17 Jul 1998 09:53:24 +0100 (BST)
Cc: csound@maths.ex.ac.uk, electronica@maths.ex.ac.uk
In-Reply-To: <35AE1CFE.10E3C1DC@media.mit.edu> from "Eric Scheirer" at Jul 16, 98 11:32:14 am
X-Mailer: ELM [version 2.4 PL25]
MIME-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit
Sender: owner-csound-outgoing@maths.ex.ac.uk
Precedence: bulk

Eric Scheirer wrote
>
>Hi James,
>
>My postings to the Csound list don't seem to get through.
>At least, I don't seem to get copies.  Can you check to
>see that I'm properly subscribed?

Eric, the email machine had its operating system upgraded yesterday
Normally this wouldnt be a problem, there would be some disruption to
service but 99.9% of messages would get queued and delivered later.

However in this case the mail aliases database which is vital to the
email list server unexpectedly got deleted.
So when the machine came back and started accepting queued messages all
the traffic to csound bounced.

I got the alias file from backups and as far as I know the csound and
electronica email lists are running again.

Sorry for any inconvience, these things happen

-- 
http://www.maths.ex.ac.uk/~james/tekno
Watch out for "Medium Length Hair" EP on Science City(Sci 12)
Most Intelligent Customers Realize Our Software is Only for Fools and Teenagers



Received: from stork.maths.bath.ac.uk by omphalos.maths.Bath.AC.UK id aa05592;
          17 Jul 98 8:24 BST
Received: from mercury.bath.ac.uk by stork.maths.Bath.AC.UK id aa10077;
          17 Jul 98 8:24 BST
Received: (qmail 2990 invoked from network); 17 Jul 1998 07:24:25 -0000
Received: from hermes.ex.ac.uk (HELO exeter.ac.uk) (144.173.6.14)
  by mercury.bath.ac.uk with SMTP; 17 Jul 1998 07:24:25 -0000
Received: from noether [144.173.8.10] by hermes via SMTP (IAA15290); Fri, 17 Jul 1998 08:19:51 +0100 (BST)
Received: from exeter.ac.uk by maths.ex.ac.uk; Fri, 17 Jul 1998 08:19:40 +0100
Received: from [193.121.99.70] by hermes via ESMTP (IAA13053); Fri, 17 Jul 1998 08:19:29 +0100 (BST)
Received: from turing.hogent.be ([193.190.88.183]) by hurricane.netgate.be
          (post.office MTA v2.0 0813 ID# 0-32575U60) with ESMTP id AAC292
          for ; Fri, 17 Jul 1998 09:24:34 +0200
From: David Schuyeteneer 
To: Csound List 
Subject: Fw: RANDOM NUMBERS
Date: Fri, 17 Jul 1998 09:00:47 +0200
X-MSMail-Priority: Normal
X-Priority: 3
X-Mailer: Microsoft Internet Mail 4.70.1155
MIME-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
Message-ID: <19980717072302761.AAC292@turing.hogent.be>
Sender: owner-csound-outgoing@maths.ex.ac.uk
Precedence: bulk

This is from Paul Ruston, he has difficulties with his mailserver and asked
me
to forward it.

later,
David.

 
> I hope I'm not displaying my ignorance here or encouraging the
> antagonism between the two of you but doesn't Jean Piche's formula
> produce  -1's and  0's instead of  -1's and +1's ?
> 
> k1 	rand	1
> k2 	= 	int(k1+1)-1
> 
> What do you think of these suggestions?  Is one better than the other?
> (variations of Erik Spjut's suggestion)
> 
> k1 rnd(1)
> k2=2*int(2*k1)-1
> 
> or 
> 
> k1 rand 1
> k2 = 2*int(2*abs(k1))-1
> 
> And I apologize.  I am one of those that does not fully understand the
> random functions (but I'm working on it).  Thanks again. 



Received: from stork.maths.bath.ac.uk by omphalos.maths.Bath.AC.UK id aa06718;
          17 Jul 98 9:57 BST
Received: from pat.bath.ac.uk by stork.maths.Bath.AC.UK id aa16840;
          17 Jul 98 9:57 BST
Received: (qmail 17184 invoked from network); 17 Jul 1998 08:57:42 -0000
Received: from hermes.ex.ac.uk (HELO exeter.ac.uk) (144.173.6.14)
  by pat.bath.ac.uk with SMTP; 17 Jul 1998 08:57:42 -0000
Received: from noether [144.173.8.10] by hermes via SMTP (JAA14479); Fri, 17 Jul 1998 09:53:44 +0100 (BST)
Received: from zeno.maths.exeter.ac.uk by maths.ex.ac.uk; Fri, 17 Jul 1998 09:53:25 +0100
From: james@maths.ex.ac.uk
Message-Id: <3690.199807170853@zeno.maths.exeter.ac.uk>
Subject: Re: Csound list postings
To: Eric Scheirer 
Date: Fri, 17 Jul 1998 09:53:24 +0100 (BST)
Cc: csound@maths.ex.ac.uk, electronica@maths.ex.ac.uk
In-Reply-To: <35AE1CFE.10E3C1DC@media.mit.edu> from "Eric Scheirer" at Jul 16, 98 11:32:14 am
X-Mailer: ELM [version 2.4 PL25]
MIME-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit
Sender: owner-csound-outgoing@maths.ex.ac.uk
Precedence: bulk

Eric Scheirer wrote
>
>Hi James,
>
>My postings to the Csound list don't seem to get through.
>At least, I don't seem to get copies.  Can you check to
>see that I'm properly subscribed?

Eric, the email machine had its operating system upgraded yesterday
Normally this wouldnt be a problem, there would be some disruption to
service but 99.9% of messages would get queued and delivered later.

However in this case the mail aliases database which is vital to the
email list server unexpectedly got deleted.
So when the machine came back and started accepting queued messages all
the traffic to csound bounced.

I got the alias file from backups and as far as I know the csound and
electronica email lists are running again.

Sorry for any inconvience, these things happen

-- 
http://www.maths.ex.ac.uk/~james/tekno
Watch out for "Medium Length Hair" EP on Science City(Sci 12)
Most Intelligent Customers Realize Our Software is Only for Fools and Teenagers



Received: from stork.maths.bath.ac.uk by omphalos.maths.Bath.AC.UK id aa05592;
          17 Jul 98 8:24 BST
Received: from mercury.bath.ac.uk by stork.maths.Bath.AC.UK id aa10077;
          17 Jul 98 8:24 BST
Received: (qmail 2990 invoked from network); 17 Jul 1998 07:24:25 -0000
Received: from hermes.ex.ac.uk (HELO exeter.ac.uk) (144.173.6.14)
  by mercury.bath.ac.uk with SMTP; 17 Jul 1998 07:24:25 -0000
Received: from noether [144.173.8.10] by hermes via SMTP (IAA15290); Fri, 17 Jul 1998 08:19:51 +0100 (BST)
Received: from exeter.ac.uk by maths.ex.ac.uk; Fri, 17 Jul 1998 08:19:40 +0100
Received: from [193.121.99.70] by hermes via ESMTP (IAA13053); Fri, 17 Jul 1998 08:19:29 +0100 (BST)
Received: from turing.hogent.be ([193.190.88.183]) by hurricane.netgate.be
          (post.office MTA v2.0 0813 ID# 0-32575U60) with ESMTP id AAC292
          for ; Fri, 17 Jul 1998 09:24:34 +0200
From: David Schuyeteneer 
To: Csound List 
Subject: Fw: RANDOM NUMBERS
Date: Fri, 17 Jul 1998 09:00:47 +0200
X-MSMail-Priority: Normal
X-Priority: 3
X-Mailer: Microsoft Internet Mail 4.70.1155
MIME-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
Message-ID: <19980717072302761.AAC292@turing.hogent.be>
Sender: owner-csound-outgoing@maths.ex.ac.uk
Precedence: bulk

This is from Paul Ruston, he has difficulties with his mailserver and asked
me
to forward it.

later,
David.

 
> I hope I'm not displaying my ignorance here or encouraging the
> antagonism between the two of you but doesn't Jean Piche's formula
> produce  -1's and  0's instead of  -1's and +1's ?
> 
> k1 	rand	1
> k2 	= 	int(k1+1)-1
> 
> What do you think of these suggestions?  Is one better than the other?
> (variations of Erik Spjut's suggestion)
> 
> k1 rnd(1)
> k2=2*int(2*k1)-1
> 
> or 
> 
> k1 rand 1
> k2 = 2*int(2*abs(k1))-1
> 
> And I apologize.  I am one of those that does not fully understand the
> random functions (but I'm working on it).  Thanks again. 



Received: from stork.maths.bath.ac.uk by omphalos.maths.Bath.AC.UK id aa06718;
          17 Jul 98 9:57 BST
Received: from pat.bath.ac.uk by stork.maths.Bath.AC.UK id aa16840;
          17 Jul 98 9:57 BST
Received: (qmail 17184 invoked from network); 17 Jul 1998 08:57:42 -0000
Received: from hermes.ex.ac.uk (HELO exeter.ac.uk) (144.173.6.14)
  by pat.bath.ac.uk with SMTP; 17 Jul 1998 08:57:42 -0000
Received: from noether [144.173.8.10] by hermes via SMTP (JAA14479); Fri, 17 Jul 1998 09:53:44 +0100 (BST)
Received: from zeno.maths.exeter.ac.uk by maths.ex.ac.uk; Fri, 17 Jul 1998 09:53:25 +0100
From: james@maths.ex.ac.uk
Message-Id: <3690.199807170853@zeno.maths.exeter.ac.uk>
Subject: Re: Csound list postings
To: Eric Scheirer 
Date: Fri, 17 Jul 1998 09:53:24 +0100 (BST)
Cc: csound@maths.ex.ac.uk, electronica@maths.ex.ac.uk
In-Reply-To: <35AE1CFE.10E3C1DC@media.mit.edu> from "Eric Scheirer" at Jul 16, 98 11:32:14 am
X-Mailer: ELM [version 2.4 PL25]
MIME-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit
Sender: owner-csound-outgoing@maths.ex.ac.uk
Precedence: bulk

Eric Scheirer wrote
>
>Hi James,
>
>My postings to the Csound list don't seem to get through.
>At least, I don't seem to get copies.  Can you check to
>see that I'm properly subscribed?

Eric, the email machine had its operating system upgraded yesterday
Normally this wouldnt be a problem, there would be some disruption to
service but 99.9% of messages would get queued and delivered later.

However in this case the mail aliases database which is vital to the
email list server unexpectedly got deleted.
So when the machine came back and started accepting queued messages all
the traffic to csound bounced.

I got the alias file from backups and as far as I know the csound and
electronica email lists are running again.

Sorry for any inconvience, these things happen

-- 
http://www.maths.ex.ac.uk/~james/tekno
Watch out for "Medium Length Hair" EP on Science City(Sci 12)
Most Intelligent Customers Realize Our Software is Only for Fools and Teenagers



Received: from stork.maths.bath.ac.uk by omphalos.maths.Bath.AC.UK id aa05592;
          17 Jul 98 8:24 BST
Received: from mercury.bath.ac.uk by stork.maths.Bath.AC.UK id aa10077;
          17 Jul 98 8:24 BST
Received: (qmail 2990 invoked from network); 17 Jul 1998 07:24:25 -0000
Received: from hermes.ex.ac.uk (HELO exeter.ac.uk) (144.173.6.14)
  by mercury.bath.ac.uk with SMTP; 17 Jul 1998 07:24:25 -0000
Received: from noether [144.173.8.10] by hermes via SMTP (IAA15290); Fri, 17 Jul 1998 08:19:51 +0100 (BST)
Received: from exeter.ac.uk by maths.ex.ac.uk; Fri, 17 Jul 1998 08:19:40 +0100
Received: from [193.121.99.70] by hermes via ESMTP (IAA13053); Fri, 17 Jul 1998 08:19:29 +0100 (BST)
Received: from turing.hogent.be ([193.190.88.183]) by hurricane.netgate.be
          (post.office MTA v2.0 0813 ID# 0-32575U60) with ESMTP id AAC292
          for ; Fri, 17 Jul 1998 09:24:34 +0200
From: David Schuyeteneer 
To: Csound List 
Subject: Fw: RANDOM NUMBERS
Date: Fri, 17 Jul 1998 09:00:47 +0200
X-MSMail-Priority: Normal
X-Priority: 3
X-Mailer: Microsoft Internet Mail 4.70.1155
MIME-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
Message-ID: <19980717072302761.AAC292@turing.hogent.be>
Sender: owner-csound-outgoing@maths.ex.ac.uk
Precedence: bulk

This is from Paul Ruston, he has difficulties with his mailserver and asked
me
to forward it.

later,
David.

 
> I hope I'm not displaying my ignorance here or encouraging the
> antagonism between the two of you but doesn't Jean Piche's formula
> produce  -1's and  0's instead of  -1's and +1's ?
> 
> k1 	rand	1
> k2 	= 	int(k1+1)-1
> 
> What do you think of these suggestions?  Is one better than the other?
> (variations of Erik Spjut's suggestion)
> 
> k1 rnd(1)
> k2=2*int(2*k1)-1
> 
> or 
> 
> k1 rand 1
> k2 = 2*int(2*abs(k1))-1
> 
> And I apologize.  I am one of those that does not fully understand the
> random functions (but I'm working on it).  Thanks again. 



Received: from stork.maths.bath.ac.uk by omphalos.maths.Bath.AC.UK id aa06718;
          17 Jul 98 9:57 BST
Received: from pat.bath.ac.uk by stork.maths.Bath.AC.UK id aa16840;
          17 Jul 98 9:57 BST
Received: (qmail 17184 invoked from network); 17 Jul 1998 08:57:42 -0000
Received: from hermes.ex.ac.uk (HELO exeter.ac.uk) (144.173.6.14)
  by pat.bath.ac.uk with SMTP; 17 Jul 1998 08:57:42 -0000
Received: from noether [144.173.8.10] by hermes via SMTP (JAA14479); Fri, 17 Jul 1998 09:53:44 +0100 (BST)
Received: from zeno.maths.exeter.ac.uk by maths.ex.ac.uk; Fri, 17 Jul 1998 09:53:25 +0100
From: james@maths.ex.ac.uk
Message-Id: <3690.199807170853@zeno.maths.exeter.ac.uk>
Subject: Re: Csound list postings
To: Eric Scheirer 
Date: Fri, 17 Jul 1998 09:53:24 +0100 (BST)
Cc: csound@maths.ex.ac.uk, electronica@maths.ex.ac.uk
In-Reply-To: <35AE1CFE.10E3C1DC@media.mit.edu> from "Eric Scheirer" at Jul 16, 98 11:32:14 am
X-Mailer: ELM [version 2.4 PL25]
MIME-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit
Sender: owner-csound-outgoing@maths.ex.ac.uk
Precedence: bulk

Eric Scheirer wrote
>
>Hi James,
>
>My postings to the Csound list don't seem to get through.
>At least, I don't seem to get copies.  Can you check to
>see that I'm properly subscribed?

Eric, the email machine had its operating system upgraded yesterday
Normally this wouldnt be a problem, there would be some disruption to
service but 99.9% of messages would get queued and delivered later.

However in this case the mail aliases database which is vital to the
email list server unexpectedly got deleted.
So when the machine came back and started accepting queued messages all
the traffic to csound bounced.

I got the alias file from backups and as far as I know the csound and
electronica email lists are running again.

Sorry for any inconvience, these things happen

-- 
http://www.maths.ex.ac.uk/~james/tekno
Watch out for "Medium Length Hair" EP on Science City(Sci 12)
Most Intelligent Customers Realize Our Software is Only for Fools and Teenagers



Received: from stork.maths.bath.ac.uk by omphalos.maths.Bath.AC.UK id aa05592;
          17 Jul 98 8:24 BST
Received: from mercury.bath.ac.uk by stork.maths.Bath.AC.UK id aa10077;
          17 Jul 98 8:24 BST
Received: (qmail 2990 invoked from network); 17 Jul 1998 07:24:25 -0000
Received: from hermes.ex.ac.uk (HELO exeter.ac.uk) (144.173.6.14)
  by mercury.bath.ac.uk with SMTP; 17 Jul 1998 07:24:25 -0000
Received: from noether [144.173.8.10] by hermes via SMTP (IAA15290); Fri, 17 Jul 1998 08:19:51 +0100 (BST)
Received: from exeter.ac.uk by maths.ex.ac.uk; Fri, 17 Jul 1998 08:19:40 +0100
Received: from [193.121.99.70] by hermes via ESMTP (IAA13053); Fri, 17 Jul 1998 08:19:29 +0100 (BST)
Received: from turing.hogent.be ([193.190.88.183]) by hurricane.netgate.be
          (post.office MTA v2.0 0813 ID# 0-32575U60) with ESMTP id AAC292
          for ; Fri, 17 Jul 1998 09:24:34 +0200
From: David Schuyeteneer 
To: Csound List 
Subject: Fw: RANDOM NUMBERS
Date: Fri, 17 Jul 1998 09:00:47 +0200
X-MSMail-Priority: Normal
X-Priority: 3
X-Mailer: Microsoft Internet Mail 4.70.1155
MIME-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
Message-ID: <19980717072302761.AAC292@turing.hogent.be>
Sender: owner-csound-outgoing@maths.ex.ac.uk
Precedence: bulk

This is from Paul Ruston, he has difficulties with his mailserver and asked
me
to forward it.

later,
David.

 
> I hope I'm not displaying my ignorance here or encouraging the
> antagonism between the two of you but doesn't Jean Piche's formula
> produce  -1's and  0's instead of  -1's and +1's ?
> 
> k1 	rand	1
> k2 	= 	int(k1+1)-1
> 
> What do you think of these suggestions?  Is one better than the other?
> (variations of Erik Spjut's suggestion)
> 
> k1 rnd(1)
> k2=2*int(2*k1)-1
> 
> or 
> 
> k1 rand 1
> k2 = 2*int(2*abs(k1))-1
> 
> And I apologize.  I am one of those that does not fully understand the
> random functions (but I'm working on it).  Thanks again. 



Received: from stork.maths.bath.ac.uk by omphalos.maths.Bath.AC.UK id aa06718;
          17 Jul 98 9:57 BST
Received: from pat.bath.ac.uk by stork.maths.Bath.AC.UK id aa16840;
          17 Jul 98 9:57 BST
Received: (qmail 17184 invoked from network); 17 Jul 1998 08:57:42 -0000
Received: from hermes.ex.ac.uk (HELO exeter.ac.uk) (144.173.6.14)
  by pat.bath.ac.uk with SMTP; 17 Jul 1998 08:57:42 -0000
Received: from noether [144.173.8.10] by hermes via SMTP (JAA14479); Fri, 17 Jul 1998 09:53:44 +0100 (BST)
Received: from zeno.maths.exeter.ac.uk by maths.ex.ac.uk; Fri, 17 Jul 1998 09:53:25 +0100
From: james@maths.ex.ac.uk
Message-Id: <3690.199807170853@zeno.maths.exeter.ac.uk>
Subject: Re: Csound list postings
To: Eric Scheirer 
Date: Fri, 17 Jul 1998 09:53:24 +0100 (BST)
Cc: csound@maths.ex.ac.uk, electronica@maths.ex.ac.uk
In-Reply-To: <35AE1CFE.10E3C1DC@media.mit.edu> from "Eric Scheirer" at Jul 16, 98 11:32:14 am
X-Mailer: ELM [version 2.4 PL25]
MIME-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit
Sender: owner-csound-outgoing@maths.ex.ac.uk
Precedence: bulk

Eric Scheirer wrote
>
>Hi James,
>
>My postings to the Csound list don't seem to get through.
>At least, I don't seem to get copies.  Can you check to
>see that I'm properly subscribed?

Eric, the email machine had its operating system upgraded yesterday
Normally this wouldnt be a problem, there would be some disruption to
service but 99.9% of messages would get queued and delivered later.

However in this case the mail aliases database which is vital to the
email list server unexpectedly got deleted.
So when the machine came back and started accepting queued messages all
the traffic to csound bounced.

I got the alias file from backups and as far as I know the csound and
electronica email lists are running again.

Sorry for any inconvience, these things happen

-- 
http://www.maths.ex.ac.uk/~james/tekno
Watch out for "Medium Length Hair" EP on Science City(Sci 12)
Most Intelligent Customers Realize Our Software is Only for Fools and Teenagers



Received: from stork.maths.bath.ac.uk by omphalos.maths.Bath.AC.UK id aa05592;
          17 Jul 98 8:24 BST
Received: from mercury.bath.ac.uk by stork.maths.Bath.AC.UK id aa10077;
          17 Jul 98 8:24 BST
Received: (qmail 2990 invoked from network); 17 Jul 1998 07:24:25 -0000
Received: from hermes.ex.ac.uk (HELO exeter.ac.uk) (144.173.6.14)
  by mercury.bath.ac.uk with SMTP; 17 Jul 1998 07:24:25 -0000
Received: from noether [144.173.8.10] by hermes via SMTP (IAA15290); Fri, 17 Jul 1998 08:19:51 +0100 (BST)
Received: from exeter.ac.uk by maths.ex.ac.uk; Fri, 17 Jul 1998 08:19:40 +0100
Received: from [193.121.99.70] by hermes via ESMTP (IAA13053); Fri, 17 Jul 1998 08:19:29 +0100 (BST)
Received: from turing.hogent.be ([193.190.88.183]) by hurricane.netgate.be
          (post.office MTA v2.0 0813 ID# 0-32575U60) with ESMTP id AAC292
          for ; Fri, 17 Jul 1998 09:24:34 +0200
From: David Schuyeteneer 
To: Csound List 
Subject: Fw: RANDOM NUMBERS
Date: Fri, 17 Jul 1998 09:00:47 +0200
X-MSMail-Priority: Normal
X-Priority: 3
X-Mailer: Microsoft Internet Mail 4.70.1155
MIME-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
Message-ID: <19980717072302761.AAC292@turing.hogent.be>
Sender: owner-csound-outgoing@maths.ex.ac.uk
Precedence: bulk

This is from Paul Ruston, he has difficulties with his mailserver and asked
me
to forward it.

later,
David.

 
> I hope I'm not displaying my ignorance here or encouraging the
> antagonism between the two of you but doesn't Jean Piche's formula
> produce  -1's and  0's instead of  -1's and +1's ?
> 
> k1 	rand	1
> k2 	= 	int(k1+1)-1
> 
> What do you think of these suggestions?  Is one better than the other?
> (variations of Erik Spjut's suggestion)
> 
> k1 rnd(1)
> k2=2*int(2*k1)-1
> 
> or 
> 
> k1 rand 1
> k2 = 2*int(2*abs(k1))-1
> 
> And I apologize.  I am one of those that does not fully understand the
> random functions (but I'm working on it).  Thanks again. 



Received: from stork.maths.bath.ac.uk by omphalos.maths.Bath.AC.UK id aa06718;
          17 Jul 98 9:57 BST
Received: from pat.bath.ac.uk by stork.maths.Bath.AC.UK id aa16840;
          17 Jul 98 9:57 BST
Received: (qmail 17184 invoked from network); 17 Jul 1998 08:57:42 -0000
Received: from hermes.ex.ac.uk (HELO exeter.ac.uk) (144.173.6.14)
  by pat.bath.ac.uk with SMTP; 17 Jul 1998 08:57:42 -0000
Received: from noether [144.173.8.10] by hermes via SMTP (JAA14479); Fri, 17 Jul 1998 09:53:44 +0100 (BST)
Received: from zeno.maths.exeter.ac.uk by maths.ex.ac.uk; Fri, 17 Jul 1998 09:53:25 +0100
From: james@maths.ex.ac.uk
Message-Id: <3690.199807170853@zeno.maths.exeter.ac.uk>
Subject: Re: Csound list postings
To: Eric Scheirer 
Date: Fri, 17 Jul 1998 09:53:24 +0100 (BST)
Cc: csound@maths.ex.ac.uk, electronica@maths.ex.ac.uk
In-Reply-To: <35AE1CFE.10E3C1DC@media.mit.edu> from "Eric Scheirer" at Jul 16, 98 11:32:14 am
X-Mailer: ELM [version 2.4 PL25]
MIME-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit
Sender: owner-csound-outgoing@maths.ex.ac.uk
Precedence: bulk

Eric Scheirer wrote
>
>Hi James,
>
>My postings to the Csound list don't seem to get through.
>At least, I don't seem to get copies.  Can you check to
>see that I'm properly subscribed?

Eric, the email machine had its operating system upgraded yesterday
Normally this wouldnt be a problem, there would be some disruption to
service but 99.9% of messages would get queued and delivered later.

However in this case the mail aliases database which is vital to the
email list server unexpectedly got deleted.
So when the machine came back and started accepting queued messages all
the traffic to csound bounced.

I got the alias file from backups and as far as I know the csound and
electronica email lists are running again.

Sorry for any inconvience, these things happen

-- 
http://www.maths.ex.ac.uk/~james/tekno
Watch out for "Medium Length Hair" EP on Science City(Sci 12)
Most Intelligent Customers Realize Our Software is Only for Fools and Teenagers



Received: from stork.maths.bath.ac.uk by omphalos.maths.Bath.AC.UK id aa05592;
          17 Jul 98 8:24 BST
Received: from mercury.bath.ac.uk by stork.maths.Bath.AC.UK id aa10077;
          17 Jul 98 8:24 BST
Received: (qmail 2990 invoked from network); 17 Jul 1998 07:24:25 -0000
Received: from hermes.ex.ac.uk (HELO exeter.ac.uk) (144.173.6.14)
  by mercury.bath.ac.uk with SMTP; 17 Jul 1998 07:24:25 -0000
Received: from noether [144.173.8.10] by hermes via SMTP (IAA15290); Fri, 17 Jul 1998 08:19:51 +0100 (BST)
Received: from exeter.ac.uk by maths.ex.ac.uk; Fri, 17 Jul 1998 08:19:40 +0100
Received: from [193.121.99.70] by hermes via ESMTP (IAA13053); Fri, 17 Jul 1998 08:19:29 +0100 (BST)
Received: from turing.hogent.be ([193.190.88.183]) by hurricane.netgate.be
          (post.office MTA v2.0 0813 ID# 0-32575U60) with ESMTP id AAC292
          for ; Fri, 17 Jul 1998 09:24:34 +0200
From: David Schuyeteneer 
To: Csound List 
Subject: Fw: RANDOM NUMBERS
Date: Fri, 17 Jul 1998 09:00:47 +0200
X-MSMail-Priority: Normal
X-Priority: 3
X-Mailer: Microsoft Internet Mail 4.70.1155
MIME-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
Message-ID: <19980717072302761.AAC292@turing.hogent.be>
Sender: owner-csound-outgoing@maths.ex.ac.uk
Precedence: bulk

This is from Paul Ruston, he has difficulties with his mailserver and asked
me
to forward it.

later,
David.

 
> I hope I'm not displaying my ignorance here or encouraging the
> antagonism between the two of you but doesn't Jean Piche's formula
> produce  -1's and  0's instead of  -1's and +1's ?
> 
> k1 	rand	1
> k2 	= 	int(k1+1)-1
> 
> What do you think of these suggestions?  Is one better than the other?
> (variations of Erik Spjut's suggestion)
> 
> k1 rnd(1)
> k2=2*int(2*k1)-1
> 
> or 
> 
> k1 rand 1
> k2 = 2*int(2*abs(k1))-1
> 
> And I apologize.  I am one of those that does not fully understand the
> random functions (but I'm working on it).  Thanks again. 



Received: from stork.maths.bath.ac.uk by omphalos.maths.Bath.AC.UK id aa06718;
          17 Jul 98 9:57 BST
Received: from pat.bath.ac.uk by stork.maths.Bath.AC.UK id aa16840;
          17 Jul 98 9:57 BST
Received: (qmail 17184 invoked from network); 17 Jul 1998 08:57:42 -0000
Received: from hermes.ex.ac.uk (HELO exeter.ac.uk) (144.173.6.14)
  by pat.bath.ac.uk with SMTP; 17 Jul 1998 08:57:42 -0000
Received: from noether [144.173.8.10] by hermes via SMTP (JAA14479); Fri, 17 Jul 1998 09:53:44 +0100 (BST)
Received: from zeno.maths.exeter.ac.uk by maths.ex.ac.uk; Fri, 17 Jul 1998 09:53:25 +0100
From: james@maths.ex.ac.uk
Message-Id: <3690.199807170853@zeno.maths.exeter.ac.uk>
Subject: Re: Csound list postings
To: Eric Scheirer 
Date: Fri, 17 Jul 1998 09:53:24 +0100 (BST)
Cc: csound@maths.ex.ac.uk, electronica@maths.ex.ac.uk
In-Reply-To: <35AE1CFE.10E3C1DC@media.mit.edu> from "Eric Scheirer" at Jul 16, 98 11:32:14 am
X-Mailer: ELM [version 2.4 PL25]
MIME-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit
Sender: owner-csound-outgoing@maths.ex.ac.uk
Precedence: bulk

Eric Scheirer wrote
>
>Hi James,
>
>My postings to the Csound list don't seem to get through.
>At least, I don't seem to get copies.  Can you check to
>see that I'm properly subscribed?

Eric, the email machine had its operating system upgraded yesterday
Normally this wouldnt be a problem, there would be some disruption to
service but 99.9% of messages would get queued and delivered later.

However in this case the mail aliases database which is vital to the
email list server unexpectedly got deleted.
So when the machine came back and started accepting queued messages all
the traffic to csound bounced.

I got the alias file from backups and as far as I know the csound and
electronica email lists are running again.

Sorry for any inconvience, these things happen

-- 
http://www.maths.ex.ac.uk/~james/tekno
Watch out for "Medium Length Hair" EP on Science City(Sci 12)
Most Intelligent Customers Realize Our Software is Only for Fools and Teenagers



Received: from stork.maths.bath.ac.uk by omphalos.maths.Bath.AC.UK id aa05592;
          17 Jul 98 8:24 BST
Received: from mercury.bath.ac.uk by stork.maths.Bath.AC.UK id aa10077;
          17 Jul 98 8:24 BST
Received: (qmail 2990 invoked from network); 17 Jul 1998 07:24:25 -0000
Received: from hermes.ex.ac.uk (HELO exeter.ac.uk) (144.173.6.14)
  by mercury.bath.ac.uk with SMTP; 17 Jul 1998 07:24:25 -0000
Received: from noether [144.173.8.10] by hermes via SMTP (IAA15290); Fri, 17 Jul 1998 08:19:51 +0100 (BST)
Received: from exeter.ac.uk by maths.ex.ac.uk; Fri, 17 Jul 1998 08:19:40 +0100
Received: from [193.121.99.70] by hermes via ESMTP (IAA13053); Fri, 17 Jul 1998 08:19:29 +0100 (BST)
Received: from turing.hogent.be ([193.190.88.183]) by hurricane.netgate.be
          (post.office MTA v2.0 0813 ID# 0-32575U60) with ESMTP id AAC292
          for ; Fri, 17 Jul 1998 09:24:34 +0200
From: David Schuyeteneer 
To: Csound List 
Subject: Fw: RANDOM NUMBERS
Date: Fri, 17 Jul 1998 09:00:47 +0200
X-MSMail-Priority: Normal
X-Priority: 3
X-Mailer: Microsoft Internet Mail 4.70.1155
MIME-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
Message-ID: <19980717072302761.AAC292@turing.hogent.be>
Sender: owner-csound-outgoing@maths.ex.ac.uk
Precedence: bulk

This is from Paul Ruston, he has difficulties with his mailserver and asked
me
to forward it.

later,
David.

 
> I hope I'm not displaying my ignorance here or encouraging the
> antagonism between the two of you but doesn't Jean Piche's formula
> produce  -1's and  0's instead of  -1's and +1's ?
> 
> k1 	rand	1
> k2 	= 	int(k1+1)-1
> 
> What do you think of these suggestions?  Is one better than the other?
> (variations of Erik Spjut's suggestion)
> 
> k1 rnd(1)
> k2=2*int(2*k1)-1
> 
> or 
> 
> k1 rand 1
> k2 = 2*int(2*abs(k1))-1
> 
> And I apologize.  I am one of those that does not fully understand the
> random functions (but I'm working on it).  Thanks again. 



Received: from stork.maths.bath.ac.uk by omphalos.maths.Bath.AC.UK id aa06718;
          17 Jul 98 9:57 BST
Received: from pat.bath.ac.uk by stork.maths.Bath.AC.UK id aa16840;
          17 Jul 98 9:57 BST
Received: (qmail 17184 invoked from network); 17 Jul 1998 08:57:42 -0000
Received: from hermes.ex.ac.uk (HELO exeter.ac.uk) (144.173.6.14)
  by pat.bath.ac.uk with SMTP; 17 Jul 1998 08:57:42 -0000
Received: from noether [144.173.8.10] by hermes via SMTP (JAA14479); Fri, 17 Jul 1998 09:53:44 +0100 (BST)
Received: from zeno.maths.exeter.ac.uk by maths.ex.ac.uk; Fri, 17 Jul 1998 09:53:25 +0100
From: james@maths.ex.ac.uk
Message-Id: <3690.199807170853@zeno.maths.exeter.ac.uk>
Subject: Re: Csound list postings
To: Eric Scheirer 
Date: Fri, 17 Jul 1998 09:53:24 +0100 (BST)
Cc: csound@maths.ex.ac.uk, electronica@maths.ex.ac.uk
In-Reply-To: <35AE1CFE.10E3C1DC@media.mit.edu> from "Eric Scheirer" at Jul 16, 98 11:32:14 am
X-Mailer: ELM [version 2.4 PL25]
MIME-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit
Sender: owner-csound-outgoing@maths.ex.ac.uk
Precedence: bulk

Eric Scheirer wrote
>
>Hi James,
>
>My postings to the Csound list don't seem to get through.
>At least, I don't seem to get copies.  Can you check to
>see that I'm properly subscribed?

Eric, the email machine had its operating system upgraded yesterday
Normally this wouldnt be a problem, there would be some disruption to
service but 99.9% of messages would get queued and delivered later.

However in this case the mail aliases database which is vital to the
email list server unexpectedly got deleted.
So when the machine came back and started accepting queued messages all
the traffic to csound bounced.

I got the alias file from backups and as far as I know the csound and
electronica email lists are running again.

Sorry for any inconvience, these things happen

-- 
http://www.maths.ex.ac.uk/~james/tekno
Watch out for "Medium Length Hair" EP on Science City(Sci 12)
Most Intelligent Customers Realize Our Software is Only for Fools and Teenagers



Received: from stork.maths.bath.ac.uk by omphalos.maths.Bath.AC.UK id aa05592;
          17 Jul 98 8:24 BST
Received: from mercury.bath.ac.uk by stork.maths.Bath.AC.UK id aa10077;
          17 Jul 98 8:24 BST
Received: (qmail 2990 invoked from network); 17 Jul 1998 07:24:25 -0000
Received: from hermes.ex.ac.uk (HELO exeter.ac.uk) (144.173.6.14)
  by mercury.bath.ac.uk with SMTP; 17 Jul 1998 07:24:25 -0000
Received: from noether [144.173.8.10] by hermes via SMTP (IAA15290); Fri, 17 Jul 1998 08:19:51 +0100 (BST)
Received: from exeter.ac.uk by maths.ex.ac.uk; Fri, 17 Jul 1998 08:19:40 +0100
Received: from [193.121.99.70] by hermes via ESMTP (IAA13053); Fri, 17 Jul 1998 08:19:29 +0100 (BST)
Received: from turing.hogent.be ([193.190.88.183]) by hurricane.netgate.be
          (post.office MTA v2.0 0813 ID# 0-32575U60) with ESMTP id AAC292
          for ; Fri, 17 Jul 1998 09:24:34 +0200
From: David Schuyeteneer 
To: Csound List 
Subject: Fw: RANDOM NUMBERS
Date: Fri, 17 Jul 1998 09:00:47 +0200
X-MSMail-Priority: Normal
X-Priority: 3
X-Mailer: Microsoft Internet Mail 4.70.1155
MIME-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
Message-ID: <19980717072302761.AAC292@turing.hogent.be>
Sender: owner-csound-outgoing@maths.ex.ac.uk
Precedence: bulk

This is from Paul Ruston, he has difficulties with his mailserver and asked
me
to forward it.

later,
David.

 
> I hope I'm not displaying my ignorance here or encouraging the
> antagonism between the two of you but doesn't Jean Piche's formula
> produce  -1's and  0's instead of  -1's and +1's ?
> 
> k1 	rand	1
> k2 	= 	int(k1+1)-1
> 
> What do you think of these suggestions?  Is one better than the other?
> (variations of Erik Spjut's suggestion)
> 
> k1 rnd(1)
> k2=2*int(2*k1)-1
> 
> or 
> 
> k1 rand 1
> k2 = 2*int(2*abs(k1))-1
> 
> And I apologize.  I am one of those that does not fully understand the
> random functions (but I'm working on it).  Thanks again. 



Received: from stork.maths.bath.ac.uk by omphalos.maths.Bath.AC.UK id aa06718;
          17 Jul 98 9:57 BST
Received: from pat.bath.ac.uk by stork.maths.Bath.AC.UK id aa16840;
          17 Jul 98 9:57 BST
Received: (qmail 17184 invoked from network); 17 Jul 1998 08:57:42 -0000
Received: from hermes.ex.ac.uk (HELO exeter.ac.uk) (144.173.6.14)
  by pat.bath.ac.uk with SMTP; 17 Jul 1998 08:57:42 -0000
Received: from noether [144.173.8.10] by hermes via SMTP (JAA14479); Fri, 17 Jul 1998 09:53:44 +0100 (BST)
Received: from zeno.maths.exeter.ac.uk by maths.ex.ac.uk; Fri, 17 Jul 1998 09:53:25 +0100
From: james@maths.ex.ac.uk
Message-Id: <3690.199807170853@zeno.maths.exeter.ac.uk>
Subject: Re: Csound list postings
To: Eric Scheirer 
Date: Fri, 17 Jul 1998 09:53:24 +0100 (BST)
Cc: csound@maths.ex.ac.uk, electronica@maths.ex.ac.uk
In-Reply-To: <35AE1CFE.10E3C1DC@media.mit.edu> from "Eric Scheirer" at Jul 16, 98 11:32:14 am
X-Mailer: ELM [version 2.4 PL25]
MIME-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit
Sender: owner-csound-outgoing@maths.ex.ac.uk
Precedence: bulk

Eric Scheirer wrote
>
>Hi James,
>
>My postings to the Csound list don't seem to get through.
>At least, I don't seem to get copies.  Can you check to
>see that I'm properly subscribed?

Eric, the email machine had its operating system upgraded yesterday
Normally this wouldnt be a problem, there would be some disruption to
service but 99.9% of messages would get queued and delivered later.

However in this case the mail aliases database which is vital to the
email list server unexpectedly got deleted.
So when the machine came back and started accepting queued messages all
the traffic to csound bounced.

I got the alias file from backups and as far as I know the csound and
electronica email lists are running again.

Sorry for any inconvience, these things happen

-- 
http://www.maths.ex.ac.uk/~james/tekno
Watch out for "Medium Length Hair" EP on Science City(Sci 12)
Most Intelligent Customers Realize Our Software is Only for Fools and Teenagers



Received: from stork.maths.bath.ac.uk by omphalos.maths.Bath.AC.UK id aa05592;
          17 Jul 98 8:24 BST
Received: from mercury.bath.ac.uk by stork.maths.Bath.AC.UK id aa10077;
          17 Jul 98 8:24 BST
Received: (qmail 2990 invoked from network); 17 Jul 1998 07:24:25 -0000
Received: from hermes.ex.ac.uk (HELO exeter.ac.uk) (144.173.6.14)
  by mercury.bath.ac.uk with SMTP; 17 Jul 1998 07:24:25 -0000
Received: from noether [144.173.8.10] by hermes via SMTP (IAA15290); Fri, 17 Jul 1998 08:19:51 +0100 (BST)
Received: from exeter.ac.uk by maths.ex.ac.uk; Fri, 17 Jul 1998 08:19:40 +0100
Received: from [193.121.99.70] by hermes via ESMTP (IAA13053); Fri, 17 Jul 1998 08:19:29 +0100 (BST)
Received: from turing.hogent.be ([193.190.88.183]) by hurricane.netgate.be
          (post.office MTA v2.0 0813 ID# 0-32575U60) with ESMTP id AAC292
          for ; Fri, 17 Jul 1998 09:24:34 +0200
From: David Schuyeteneer 
To: Csound List 
Subject: Fw: RANDOM NUMBERS
Date: Fri, 17 Jul 1998 09:00:47 +0200
X-MSMail-Priority: Normal
X-Priority: 3
X-Mailer: Microsoft Internet Mail 4.70.1155
MIME-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
Message-ID: <19980717072302761.AAC292@turing.hogent.be>
Sender: owner-csound-outgoing@maths.ex.ac.uk
Precedence: bulk

This is from Paul Ruston, he has difficulties with his mailserver and asked
me
to forward it.

later,
David.

 
> I hope I'm not displaying my ignorance here or encouraging the
> antagonism between the two of you but doesn't Jean Piche's formula
> produce  -1's and  0's instead of  -1's and +1's ?
> 
> k1 	rand	1
> k2 	= 	int(k1+1)-1
> 
> What do you think of these suggestions?  Is one better than the other?
> (variations of Erik Spjut's suggestion)
> 
> k1 rnd(1)
> k2=2*int(2*k1)-1
> 
> or 
> 
> k1 rand 1
> k2 = 2*int(2*abs(k1))-1
> 
> And I apologize.  I am one of those that does not fully understand the
> random functions (but I'm working on it).  Thanks again. 



Received: from stork.maths.bath.ac.uk by omphalos.maths.Bath.AC.UK id aa06718;
          17 Jul 98 9:57 BST
Received: from pat.bath.ac.uk by stork.maths.Bath.AC.UK id aa16840;
          17 Jul 98 9:57 BST
Received: (qmail 17184 invoked from network); 17 Jul 1998 08:57:42 -0000
Received: from hermes.ex.ac.uk (HELO exeter.ac.uk) (144.173.6.14)
  by pat.bath.ac.uk with SMTP; 17 Jul 1998 08:57:42 -0000
Received: from noether [144.173.8.10] by hermes via SMTP (JAA14479); Fri, 17 Jul 1998 09:53:44 +0100 (BST)
Received: from zeno.maths.exeter.ac.uk by maths.ex.ac.uk; Fri, 17 Jul 1998 09:53:25 +0100
From: james@maths.ex.ac.uk
Message-Id: <3690.199807170853@zeno.maths.exeter.ac.uk>
Subject: Re: Csound list postings
To: Eric Scheirer 
Date: Fri, 17 Jul 1998 09:53:24 +0100 (BST)
Cc: csound@maths.ex.ac.uk, electronica@maths.ex.ac.uk
In-Reply-To: <35AE1CFE.10E3C1DC@media.mit.edu> from "Eric Scheirer" at Jul 16, 98 11:32:14 am
X-Mailer: ELM [version 2.4 PL25]
MIME-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit
Sender: owner-csound-outgoing@maths.ex.ac.uk
Precedence: bulk

Eric Scheirer wrote
>
>Hi James,
>
>My postings to the Csound list don't seem to get through.
>At least, I don't seem to get copies.  Can you check to
>see that I'm properly subscribed?

Eric, the email machine had its operating system upgraded yesterday
Normally this wouldnt be a problem, there would be some disruption to
service but 99.9% of messages would get queued and delivered later.

However in this case the mail aliases database which is vital to the
email list server unexpectedly got deleted.
So when the machine came back and started accepting queued messages all
the traffic to csound bounced.

I got the alias file from backups and as far as I know the csound and
electronica email lists are running again.

Sorry for any inconvience, these things happen

-- 
http://www.maths.ex.ac.uk/~james/tekno
Watch out for "Medium Length Hair" EP on Science City(Sci 12)
Most Intelligent Customers Realize Our Software is Only for Fools and Teenagers



Received: from stork.maths.bath.ac.uk by omphalos.maths.Bath.AC.UK id aa05592;
          17 Jul 98 8:24 BST
Received: from mercury.bath.ac.uk by stork.maths.Bath.AC.UK id aa10077;
          17 Jul 98 8:24 BST
Received: (qmail 2990 invoked from network); 17 Jul 1998 07:24:25 -0000
Received: from hermes.ex.ac.uk (HELO exeter.ac.uk) (144.173.6.14)
  by mercury.bath.ac.uk with SMTP; 17 Jul 1998 07:24:25 -0000
Received: from noether [144.173.8.10] by hermes via SMTP (IAA15290); Fri, 17 Jul 1998 08:19:51 +0100 (BST)
Received: from exeter.ac.uk by maths.ex.ac.uk; Fri, 17 Jul 1998 08:19:40 +0100
Received: from [193.121.99.70] by hermes via ESMTP (IAA13053); Fri, 17 Jul 1998 08:19:29 +0100 (BST)
Received: from turing.hogent.be ([193.190.88.183]) by hurricane.netgate.be
          (post.office MTA v2.0 0813 ID# 0-32575U60) with ESMTP id AAC292
          for ; Fri, 17 Jul 1998 09:24:34 +0200
From: David Schuyeteneer 
To: Csound List 
Subject: Fw: RANDOM NUMBERS
Date: Fri, 17 Jul 1998 09:00:47 +0200
X-MSMail-Priority: Normal
X-Priority: 3
X-Mailer: Microsoft Internet Mail 4.70.1155
MIME-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
Message-ID: <19980717072302761.AAC292@turing.hogent.be>
Sender: owner-csound-outgoing@maths.ex.ac.uk
Precedence: bulk

This is from Paul Ruston, he has difficulties with his mailserver and asked
me
to forward it.

later,
David.

 
> I hope I'm not displaying my ignorance here or encouraging the
> antagonism between the two of you but doesn't Jean Piche's formula
> produce  -1's and  0's instead of  -1's and +1's ?
> 
> k1 	rand	1
> k2 	= 	int(k1+1)-1
> 
> What do you think of these suggestions?  Is one better than the other?
> (variations of Erik Spjut's suggestion)
> 
> k1 rnd(1)
> k2=2*int(2*k1)-1
> 
> or 
> 
> k1 rand 1
> k2 = 2*int(2*abs(k1))-1
> 
> And I apologize.  I am one of those that does not fully understand the
> random functions (but I'm working on it).  Thanks again. 



Received: from stork.maths.bath.ac.uk by omphalos.maths.Bath.AC.UK id aa06718;
          17 Jul 98 9:57 BST
Received: from pat.bath.ac.uk by stork.maths.Bath.AC.UK id aa16840;
          17 Jul 98 9:57 BST
Received: (qmail 17184 invoked from network); 17 Jul 1998 08:57:42 -0000
Received: from hermes.ex.ac.uk (HELO exeter.ac.uk) (144.173.6.14)
  by pat.bath.ac.uk with SMTP; 17 Jul 1998 08:57:42 -0000
Received: from noether [144.173.8.10] by hermes via SMTP (JAA14479); Fri, 17 Jul 1998 09:53:44 +0100 (BST)
Received: from zeno.maths.exeter.ac.uk by maths.ex.ac.uk; Fri, 17 Jul 1998 09:53:25 +0100
From: james@maths.ex.ac.uk
Message-Id: <3690.199807170853@zeno.maths.exeter.ac.uk>
Subject: Re: Csound list postings
To: Eric Scheirer 
Date: Fri, 17 Jul 1998 09:53:24 +0100 (BST)
Cc: csound@maths.ex.ac.uk, electronica@maths.ex.ac.uk
In-Reply-To: <35AE1CFE.10E3C1DC@media.mit.edu> from "Eric Scheirer" at Jul 16, 98 11:32:14 am
X-Mailer: ELM [version 2.4 PL25]
MIME-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit
Sender: owner-csound-outgoing@maths.ex.ac.uk
Precedence: bulk

Eric Scheirer wrote
>
>Hi James,
>
>My postings to the Csound list don't seem to get through.
>At least, I don't seem to get copies.  Can you check to
>see that I'm properly subscribed?

Eric, the email machine had its operating system upgraded yesterday
Normally this wouldnt be a problem, there would be some disruption to
service but 99.9% of messages would get queued and delivered later.

However in this case the mail aliases database which is vital to the
email list server unexpectedly got deleted.
So when the machine came back and started accepting queued messages all
the traffic to csound bounced.

I got the alias file from backups and as far as I know the csound and
electronica email lists are running again.

Sorry for any inconvience, these things happen

-- 
http://www.maths.ex.ac.uk/~james/tekno
Watch out for "Medium Length Hair" EP on Science City(Sci 12)
Most Intelligent Customers Realize Our Software is Only for Fools and Teenagers



Received: from stork.maths.bath.ac.uk by omphalos.maths.Bath.AC.UK id aa05592;
          17 Jul 98 8:24 BST
Received: from mercury.bath.ac.uk by stork.maths.Bath.AC.UK id aa10077;
          17 Jul 98 8:24 BST
Received: (qmail 2990 invoked from network); 17 Jul 1998 07:24:25 -0000
Received: from hermes.ex.ac.uk (HELO exeter.ac.uk) (144.173.6.14)
  by mercury.bath.ac.uk with SMTP; 17 Jul 1998 07:24:25 -0000
Received: from noether [144.173.8.10] by hermes via SMTP (IAA15290); Fri, 17 Jul 1998 08:19:51 +0100 (BST)
Received: from exeter.ac.uk by maths.ex.ac.uk; Fri, 17 Jul 1998 08:19:40 +0100
Received: from [193.121.99.70] by hermes via ESMTP (IAA13053); Fri, 17 Jul 1998 08:19:29 +0100 (BST)
Received: from turing.hogent.be ([193.190.88.183]) by hurricane.netgate.be
          (post.office MTA v2.0 0813 ID# 0-32575U60) with ESMTP id AAC292
          for ; Fri, 17 Jul 1998 09:24:34 +0200
From: David Schuyeteneer 
To: Csound List 
Subject: Fw: RANDOM NUMBERS
Date: Fri, 17 Jul 1998 09:00:47 +0200
X-MSMail-Priority: Normal
X-Priority: 3
X-Mailer: Microsoft Internet Mail 4.70.1155
MIME-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
Message-ID: <19980717072302761.AAC292@turing.hogent.be>
Sender: owner-csound-outgoing@maths.ex.ac.uk
Precedence: bulk

This is from Paul Ruston, he has difficulties with his mailserver and asked
me
to forward it.

later,
David.

 
> I hope I'm not displaying my ignorance here or encouraging the
> antagonism between the two of you but doesn't Jean Piche's formula
> produce  -1's and  0's instead of  -1's and +1's ?
> 
> k1 	rand	1
> k2 	= 	int(k1+1)-1
> 
> What do you think of these suggestions?  Is one better than the other?
> (variations of Erik Spjut's suggestion)
> 
> k1 rnd(1)
> k2=2*int(2*k1)-1
> 
> or 
> 
> k1 rand 1
> k2 = 2*int(2*abs(k1))-1
> 
> And I apologize.  I am one of those that does not fully understand the
> random functions (but I'm working on it).  Thanks again. 



Received: from stork.maths.bath.ac.uk by omphalos.maths.Bath.AC.UK id aa06718;
          17 Jul 98 9:57 BST
Received: from pat.bath.ac.uk by stork.maths.Bath.AC.UK id aa16840;
          17 Jul 98 9:57 BST
Received: (qmail 17184 invoked from network); 17 Jul 1998 08:57:42 -0000
Received: from hermes.ex.ac.uk (HELO exeter.ac.uk) (144.173.6.14)
  by pat.bath.ac.uk with SMTP; 17 Jul 1998 08:57:42 -0000
Received: from noether [144.173.8.10] by hermes via SMTP (JAA14479); Fri, 17 Jul 1998 09:53:44 +0100 (BST)
Received: from zeno.maths.exeter.ac.uk by maths.ex.ac.uk; Fri, 17 Jul 1998 09:53:25 +0100
From: james@maths.ex.ac.uk
Message-Id: <3690.199807170853@zeno.maths.exeter.ac.uk>
Subject: Re: Csound list postings
To: Eric Scheirer 
Date: Fri, 17 Jul 1998 09:53:24 +0100 (BST)
Cc: csound@maths.ex.ac.uk, electronica@maths.ex.ac.uk
In-Reply-To: <35AE1CFE.10E3C1DC@media.mit.edu> from "Eric Scheirer" at Jul 16, 98 11:32:14 am
X-Mailer: ELM [version 2.4 PL25]
MIME-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit
Sender: owner-csound-outgoing@maths.ex.ac.uk
Precedence: bulk

Eric Scheirer wrote
>
>Hi James,
>
>My postings to the Csound list don't seem to get through.
>At least, I don't seem to get copies.  Can you check to
>see that I'm properly subscribed?

Eric, the email machine had its operating system upgraded yesterday
Normally this wouldnt be a problem, there would be some disruption to
service but 99.9% of messages would get queued and delivered later.

However in this case the mail aliases database which is vital to the
email list server unexpectedly got deleted.
So when the machine came back and started accepting queued messages all
the traffic to csound bounced.

I got the alias file from backups and as far as I know the csound and
electronica email lists are running again.

Sorry for any inconvience, these things happen

-- 
http://www.maths.ex.ac.uk/~james/tekno
Watch out for "Medium Length Hair" EP on Science City(Sci 12)
Most Intelligent Customers Realize Our Software is Only for Fools and Teenagers



Received: from stork.maths.bath.ac.uk by omphalos.maths.Bath.AC.UK id aa05592;
          17 Jul 98 8:24 BST
Received: from mercury.bath.ac.uk by stork.maths.Bath.AC.UK id aa10077;
          17 Jul 98 8:24 BST
Received: (qmail 2990 invoked from network); 17 Jul 1998 07:24:25 -0000
Received: from hermes.ex.ac.uk (HELO exeter.ac.uk) (144.173.6.14)
  by mercury.bath.ac.uk with SMTP; 17 Jul 1998 07:24:25 -0000
Received: from noether [144.173.8.10] by hermes via SMTP (IAA15290); Fri, 17 Jul 1998 08:19:51 +0100 (BST)
Received: from exeter.ac.uk by maths.ex.ac.uk; Fri, 17 Jul 1998 08:19:40 +0100
Received: from [193.121.99.70] by hermes via ESMTP (IAA13053); Fri, 17 Jul 1998 08:19:29 +0100 (BST)
Received: from turing.hogent.be ([193.190.88.183]) by hurricane.netgate.be
          (post.office MTA v2.0 0813 ID# 0-32575U60) with ESMTP id AAC292
          for ; Fri, 17 Jul 1998 09:24:34 +0200
From: David Schuyeteneer 
To: Csound List 
Subject: Fw: RANDOM NUMBERS
Date: Fri, 17 Jul 1998 09:00:47 +0200
X-MSMail-Priority: Normal
X-Priority: 3
X-Mailer: Microsoft Internet Mail 4.70.1155
MIME-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
Message-ID: <19980717072302761.AAC292@turing.hogent.be>
Sender: owner-csound-outgoing@maths.ex.ac.uk
Precedence: bulk

This is from Paul Ruston, he has difficulties with his mailserver and asked
me
to forward it.

later,
David.

 
> I hope I'm not displaying my ignorance here or encouraging the
> antagonism between the two of you but doesn't Jean Piche's formula
> produce  -1's and  0's instead of  -1's and +1's ?
> 
> k1 	rand	1
> k2 	= 	int(k1+1)-1
> 
> What do you think of these suggestions?  Is one better than the other?
> (variations of Erik Spjut's suggestion)
> 
> k1 rnd(1)
> k2=2*int(2*k1)-1
> 
> or 
> 
> k1 rand 1
> k2 = 2*int(2*abs(k1))-1
> 
> And I apologize.  I am one of those that does not fully understand the
> random functions (but I'm working on it).  Thanks again. 



Received: from stork.maths.bath.ac.uk by omphalos.maths.Bath.AC.UK id aa06718;
          17 Jul 98 9:57 BST
Received: from pat.bath.ac.uk by stork.maths.Bath.AC.UK id aa16840;
          17 Jul 98 9:57 BST
Received: (qmail 17184 invoked from network); 17 Jul 1998 08:57:42 -0000
Received: from hermes.ex.ac.uk (HELO exeter.ac.uk) (144.173.6.14)
  by pat.bath.ac.uk with SMTP; 17 Jul 1998 08:57:42 -0000
Received: from noether [144.173.8.10] by hermes via SMTP (JAA14479); Fri, 17 Jul 1998 09:53:44 +0100 (BST)
Received: from zeno.maths.exeter.ac.uk by maths.ex.ac.uk; Fri, 17 Jul 1998 09:53:25 +0100
From: james@maths.ex.ac.uk
Message-Id: <3690.199807170853@zeno.maths.exeter.ac.uk>
Subject: Re: Csound list postings
To: Eric Scheirer 
Date: Fri, 17 Jul 1998 09:53:24 +0100 (BST)
Cc: csound@maths.ex.ac.uk, electronica@maths.ex.ac.uk
In-Reply-To: <35AE1CFE.10E3C1DC@media.mit.edu> from "Eric Scheirer" at Jul 16, 98 11:32:14 am
X-Mailer: ELM [version 2.4 PL25]
MIME-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit
Sender: owner-csound-outgoing@maths.ex.ac.uk
Precedence: bulk

Eric Scheirer wrote
>
>Hi James,
>
>My postings to the Csound list don't seem to get through.
>At least, I don't seem to get copies.  Can you check to
>see that I'm properly subscribed?

Eric, the email machine had its operating system upgraded yesterday
Normally this wouldnt be a problem, there would be some disruption to
service but 99.9% of messages would get queued and delivered later.

However in this case the mail aliases database which is vital to the
email list server unexpectedly got deleted.
So when the machine came back and started accepting queued messages all
the traffic to csound bounced.

I got the alias file from backups and as far as I know the csound and
electronica email lists are running again.

Sorry for any inconvience, these things happen

-- 
http://www.maths.ex.ac.uk/~james/tekno
Watch out for "Medium Length Hair" EP on Science City(Sci 12)
Most Intelligent Customers Realize Our Software is Only for Fools and Teenagers



Received: from stork.maths.bath.ac.uk by omphalos.maths.Bath.AC.UK id aa05592;
          17 Jul 98 8:24 BST
Received: from mercury.bath.ac.uk by stork.maths.Bath.AC.UK id aa10077;
          17 Jul 98 8:24 BST
Received: (qmail 2990 invoked from network); 17 Jul 1998 07:24:25 -0000
Received: from hermes.ex.ac.uk (HELO exeter.ac.uk) (144.173.6.14)
  by mercury.bath.ac.uk with SMTP; 17 Jul 1998 07:24:25 -0000
Received: from noether [144.173.8.10] by hermes via SMTP (IAA15290); Fri, 17 Jul 1998 08:19:51 +0100 (BST)
Received: from exeter.ac.uk by maths.ex.ac.uk; Fri, 17 Jul 1998 08:19:40 +0100
Received: from [193.121.99.70] by hermes via ESMTP (IAA13053); Fri, 17 Jul 1998 08:19:29 +0100 (BST)
Received: from turing.hogent.be ([193.190.88.183]) by hurricane.netgate.be
          (post.office MTA v2.0 0813 ID# 0-32575U60) with ESMTP id AAC292
          for ; Fri, 17 Jul 1998 09:24:34 +0200
From: David Schuyeteneer 
To: Csound List 
Subject: Fw: RANDOM NUMBERS
Date: Fri, 17 Jul 1998 09:00:47 +0200
X-MSMail-Priority: Normal
X-Priority: 3
X-Mailer: Microsoft Internet Mail 4.70.1155
MIME-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
Message-ID: <19980717072302761.AAC292@turing.hogent.be>
Sender: owner-csound-outgoing@maths.ex.ac.uk
Precedence: bulk

This is from Paul Ruston, he has difficulties with his mailserver and asked
me
to forward it.

later,
David.

 
> I hope I'm not displaying my ignorance here or encouraging the
> antagonism between the two of you but doesn't Jean Piche's formula
> produce  -1's and  0's instead of  -1's and +1's ?
> 
> k1 	rand	1
> k2 	= 	int(k1+1)-1
> 
> What do you think of these suggestions?  Is one better than the other?
> (variations of Erik Spjut's suggestion)
> 
> k1 rnd(1)
> k2=2*int(2*k1)-1
> 
> or 
> 
> k1 rand 1
> k2 = 2*int(2*abs(k1))-1
> 
> And I apologize.  I am one of those that does not fully understand the
> random functions (but I'm working on it).  Thanks again. 



Received: from stork.maths.bath.ac.uk by omphalos.maths.Bath.AC.UK id aa06718;
          17 Jul 98 9:57 BST
Received: from pat.bath.ac.uk by stork.maths.Bath.AC.UK id aa16840;
          17 Jul 98 9:57 BST
Received: (qmail 17184 invoked from network); 17 Jul 1998 08:57:42 -0000
Received: from hermes.ex.ac.uk (HELO exeter.ac.uk) (144.173.6.14)
  by pat.bath.ac.uk with SMTP; 17 Jul 1998 08:57:42 -0000
Received: from noether [144.173.8.10] by hermes via SMTP (JAA14479); Fri, 17 Jul 1998 09:53:44 +0100 (BST)
Received: from zeno.maths.exeter.ac.uk by maths.ex.ac.uk; Fri, 17 Jul 1998 09:53:25 +0100
From: james@maths.ex.ac.uk
Message-Id: <3690.199807170853@zeno.maths.exeter.ac.uk>
Subject: Re: Csound list postings
To: Eric Scheirer 
Date: Fri, 17 Jul 1998 09:53:24 +0100 (BST)
Cc: csound@maths.ex.ac.uk, electronica@maths.ex.ac.uk
In-Reply-To: <35AE1CFE.10E3C1DC@media.mit.edu> from "Eric Scheirer" at Jul 16, 98 11:32:14 am
X-Mailer: ELM [version 2.4 PL25]
MIME-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit
Sender: owner-csound-outgoing@maths.ex.ac.uk
Precedence: bulk

Eric Scheirer wrote
>
>Hi James,
>
>My postings to the Csound list don't seem to get through.
>At least, I don't seem to get copies.  Can you check to
>see that I'm properly subscribed?

Eric, the email machine had its operating system upgraded yesterday
Normally this wouldnt be a problem, there would be some disruption to
service but 99.9% of messages would get queued and delivered later.

However in this case the mail aliases database which is vital to the
email list server unexpectedly got deleted.
So when the machine came back and started accepting queued messages all
the traffic to csound bounced.

I got the alias file from backups and as far as I know the csound and
electronica email lists are running again.

Sorry for any inconvience, these things happen

-- 
http://www.maths.ex.ac.uk/~james/tekno
Watch out for "Medium Length Hair" EP on Science City(Sci 12)
Most Intelligent Customers Realize Our Software is Only for Fools and Teenagers



Received: from stork.maths.bath.ac.uk by omphalos.maths.Bath.AC.UK id aa05592;
          17 Jul 98 8:24 BST
Received: from mercury.bath.ac.uk by stork.maths.Bath.AC.UK id aa10077;
          17 Jul 98 8:24 BST
Received: (qmail 2990 invoked from network); 17 Jul 1998 07:24:25 -0000
Received: from hermes.ex.ac.uk (HELO exeter.ac.uk) (144.173.6.14)
  by mercury.bath.ac.uk with SMTP; 17 Jul 1998 07:24:25 -0000
Received: from noether [144.173.8.10] by hermes via SMTP (IAA15290); Fri, 17 Jul 1998 08:19:51 +0100 (BST)
Received: from exeter.ac.uk by maths.ex.ac.uk; Fri, 17 Jul 1998 08:19:40 +0100
Received: from [193.121.99.70] by hermes via ESMTP (IAA13053); Fri, 17 Jul 1998 08:19:29 +0100 (BST)
Received: from turing.hogent.be ([193.190.88.183]) by hurricane.netgate.be
          (post.office MTA v2.0 0813 ID# 0-32575U60) with ESMTP id AAC292
          for ; Fri, 17 Jul 1998 09:24:34 +0200
From: David Schuyeteneer 
To: Csound List 
Subject: Fw: RANDOM NUMBERS
Date: Fri, 17 Jul 1998 09:00:47 +0200
X-MSMail-Priority: Normal
X-Priority: 3
X-Mailer: Microsoft Internet Mail 4.70.1155
MIME-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
Message-ID: <19980717072302761.AAC292@turing.hogent.be>
Sender: owner-csound-outgoing@maths.ex.ac.uk
Precedence: bulk

This is from Paul Ruston, he has difficulties with his mailserver and asked
me
to forward it.

later,
David.

 
> I hope I'm not displaying my ignorance here or encouraging the
> antagonism between the two of you but doesn't Jean Piche's formula
> produce  -1's and  0's instead of  -1's and +1's ?
> 
> k1 	rand	1
> k2 	= 	int(k1+1)-1
> 
> What do you think of these suggestions?  Is one better than the other?
> (variations of Erik Spjut's suggestion)
> 
> k1 rnd(1)
> k2=2*int(2*k1)-1
> 
> or 
> 
> k1 rand 1
> k2 = 2*int(2*abs(k1))-1
> 
> And I apologize.  I am one of those that does not fully understand the
> random functions (but I'm working on it).  Thanks again. 



Received: from stork.maths.bath.ac.uk by omphalos.maths.Bath.AC.UK id aa06718;
          17 Jul 98 9:57 BST
Received: from pat.bath.ac.uk by stork.maths.Bath.AC.UK id aa16840;
          17 Jul 98 9:57 BST
Received: (qmail 17184 invoked from network); 17 Jul 1998 08:57:42 -0000
Received: from hermes.ex.ac.uk (HELO exeter.ac.uk) (144.173.6.14)
  by pat.bath.ac.uk with SMTP; 17 Jul 1998 08:57:42 -0000
Received: from noether [144.173.8.10] by hermes via SMTP (JAA14479); Fri, 17 Jul 1998 09:53:44 +0100 (BST)
Received: from zeno.maths.exeter.ac.uk by maths.ex.ac.uk; Fri, 17 Jul 1998 09:53:25 +0100
From: james@maths.ex.ac.uk
Message-Id: <3690.199807170853@zeno.maths.exeter.ac.uk>
Subject: Re: Csound list postings
To: Eric Scheirer 
Date: Fri, 17 Jul 1998 09:53:24 +0100 (BST)
Cc: csound@maths.ex.ac.uk, electronica@maths.ex.ac.uk
In-Reply-To: <35AE1CFE.10E3C1DC@media.mit.edu> from "Eric Scheirer" at Jul 16, 98 11:32:14 am
X-Mailer: ELM [version 2.4 PL25]
MIME-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit
Sender: owner-csound-outgoing@maths.ex.ac.uk
Precedence: bulk

Eric Scheirer wrote
>
>Hi James,
>
>My postings to the Csound list don't seem to get through.
>At least, I don't seem to get copies.  Can you check to
>see that I'm properly subscribed?

Eric, the email machine had its operating system upgraded yesterday
Normally this wouldnt be a problem, there would be some disruption to
service but 99.9% of messages would get queued and delivered later.

However in this case the mail aliases database which is vital to the
email list server unexpectedly got deleted.
So when the machine came back and started accepting queued messages all
the traffic to csound bounced.

I got the alias file from backups and as far as I know the csound and
electronica email lists are running again.

Sorry for any inconvience, these things happen

-- 
http://www.maths.ex.ac.uk/~james/tekno
Watch out for "Medium Length Hair" EP on Science City(Sci 12)
Most Intelligent Customers Realize Our Software is Only for Fools and Teenagers



Received: from stork.maths.bath.ac.uk by omphalos.maths.Bath.AC.UK id aa05592;
          17 Jul 98 8:24 BST
Received: from mercury.bath.ac.uk by stork.maths.Bath.AC.UK id aa10077;
          17 Jul 98 8:24 BST
Received: (qmail 2990 invoked from network); 17 Jul 1998 07:24:25 -0000
Received: from hermes.ex.ac.uk (HELO exeter.ac.uk) (144.173.6.14)
  by mercury.bath.ac.uk with SMTP; 17 Jul 1998 07:24:25 -0000
Received: from noether [144.173.8.10] by hermes via SMTP (IAA15290); Fri, 17 Jul 1998 08:19:51 +0100 (BST)
Received: from exeter.ac.uk by maths.ex.ac.uk; Fri, 17 Jul 1998 08:19:40 +0100
Received: from [193.121.99.70] by hermes via ESMTP (IAA13053); Fri, 17 Jul 1998 08:19:29 +0100 (BST)
Received: from turing.hogent.be ([193.190.88.183]) by hurricane.netgate.be
          (post.office MTA v2.0 0813 ID# 0-32575U60) with ESMTP id AAC292
          for ; Fri, 17 Jul 1998 09:24:34 +0200
From: David Schuyeteneer 
To: Csound List 
Subject: Fw: RANDOM NUMBERS
Date: Fri, 17 Jul 1998 09:00:47 +0200
X-MSMail-Priority: Normal
X-Priority: 3
X-Mailer: Microsoft Internet Mail 4.70.1155
MIME-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
Message-ID: <19980717072302761.AAC292@turing.hogent.be>
Sender: owner-csound-outgoing@maths.ex.ac.uk
Precedence: bulk

This is from Paul Ruston, he has difficulties with his mailserver and asked
me
to forward it.

later,
David.

 
> I hope I'm not displaying my ignorance here or encouraging the
> antagonism between the two of you but doesn't Jean Piche's formula
> produce  -1's and  0's instead of  -1's and +1's ?
> 
> k1 	rand	1
> k2 	= 	int(k1+1)-1
> 
> What do you think of these suggestions?  Is one better than the other?
> (variations of Erik Spjut's suggestion)
> 
> k1 rnd(1)
> k2=2*int(2*k1)-1
> 
> or 
> 
> k1 rand 1
> k2 = 2*int(2*abs(k1))-1
> 
> And I apologize.  I am one of those that does not fully understand the
> random functions (but I'm working on it).  Thanks again. 



Received: from stork.maths.bath.ac.uk by omphalos.maths.Bath.AC.UK id aa06718;
          17 Jul 98 9:57 BST
Received: from pat.bath.ac.uk by stork.maths.Bath.AC.UK id aa16840;
          17 Jul 98 9:57 BST
Received: (qmail 17184 invoked from network); 17 Jul 1998 08:57:42 -0000
Received: from hermes.ex.ac.uk (HELO exeter.ac.uk) (144.173.6.14)
  by pat.bath.ac.uk with SMTP; 17 Jul 1998 08:57:42 -0000
Received: from noether [144.173.8.10] by hermes via SMTP (JAA14479); Fri, 17 Jul 1998 09:53:44 +0100 (BST)
Received: from zeno.maths.exeter.ac.uk by maths.ex.ac.uk; Fri, 17 Jul 1998 09:53:25 +0100
From: james@maths.ex.ac.uk
Message-Id: <3690.199807170853@zeno.maths.exeter.ac.uk>
Subject: Re: Csound list postings
To: Eric Scheirer 
Date: Fri, 17 Jul 1998 09:53:24 +0100 (BST)
Cc: csound@maths.ex.ac.uk, electronica@maths.ex.ac.uk
In-Reply-To: <35AE1CFE.10E3C1DC@media.mit.edu> from "Eric Scheirer" at Jul 16, 98 11:32:14 am
X-Mailer: ELM [version 2.4 PL25]
MIME-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit
Sender: owner-csound-outgoing@maths.ex.ac.uk
Precedence: bulk

Eric Scheirer wrote
>
>Hi James,
>
>My postings to the Csound list don't seem to get through.
>At least, I don't seem to get copies.  Can you check to
>see that I'm properly subscribed?

Eric, the email machine had its operating system upgraded yesterday
Normally this wouldnt be a problem, there would be some disruption to
service but 99.9% of messages would get queued and delivered later.

However in this case the mail aliases database which is vital to the
email list server unexpectedly got deleted.
So when the machine came back and started accepting queued messages all
the traffic to csound bounced.

I got the alias file from backups and as far as I know the csound and
electronica email lists are running again.

Sorry for any inconvience, these things happen

-- 
http://www.maths.ex.ac.uk/~james/tekno
Watch out for "Medium Length Hair" EP on Science City(Sci 12)
Most Intelligent Customers Realize Our Software is Only for Fools and Teenagers



Received: from stork.maths.bath.ac.uk by omphalos.maths.Bath.AC.UK id aa05592;
          17 Jul 98 8:24 BST
Received: from mercury.bath.ac.uk by stork.maths.Bath.AC.UK id aa10077;
          17 Jul 98 8:24 BST
Received: (qmail 2990 invoked from network); 17 Jul 1998 07:24:25 -0000
Received: from hermes.ex.ac.uk (HELO exeter.ac.uk) (144.173.6.14)
  by mercury.bath.ac.uk with SMTP; 17 Jul 1998 07:24:25 -0000
Received: from noether [144.173.8.10] by hermes via SMTP (IAA15290); Fri, 17 Jul 1998 08:19:51 +0100 (BST)
Received: from exeter.ac.uk by maths.ex.ac.uk; Fri, 17 Jul 1998 08:19:40 +0100
Received: from [193.121.99.70] by hermes via ESMTP (IAA13053); Fri, 17 Jul 1998 08:19:29 +0100 (BST)
Received: from turing.hogent.be ([193.190.88.183]) by hurricane.netgate.be
          (post.office MTA v2.0 0813 ID# 0-32575U60) with ESMTP id AAC292
          for ; Fri, 17 Jul 1998 09:24:34 +0200
From: David Schuyeteneer 
To: Csound List 
Subject: Fw: RANDOM NUMBERS
Date: Fri, 17 Jul 1998 09:00:47 +0200
X-MSMail-Priority: Normal
X-Priority: 3
X-Mailer: Microsoft Internet Mail 4.70.1155
MIME-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
Message-ID: <19980717072302761.AAC292@turing.hogent.be>
Sender: owner-csound-outgoing@maths.ex.ac.uk
Precedence: bulk

This is from Paul Ruston, he has difficulties with his mailserver and asked
me
to forward it.

later,
David.

 
> I hope I'm not displaying my ignorance here or encouraging the
> antagonism between the two of you but doesn't Jean Piche's formula
> produce  -1's and  0's instead of  -1's and +1's ?
> 
> k1 	rand	1
> k2 	= 	int(k1+1)-1
> 
> What do you think of these suggestions?  Is one better than the other?
> (variations of Erik Spjut's suggestion)
> 
> k1 rnd(1)
> k2=2*int(2*k1)-1
> 
> or 
> 
> k1 rand 1
> k2 = 2*int(2*abs(k1))-1
> 
> And I apologize.  I am one of those that does not fully understand the
> random functions (but I'm working on it).  Thanks again. 



Received: from stork.maths.bath.ac.uk by omphalos.maths.Bath.AC.UK id aa06718;
          17 Jul 98 9:57 BST
Received: from pat.bath.ac.uk by stork.maths.Bath.AC.UK id aa16840;
          17 Jul 98 9:57 BST
Received: (qmail 17184 invoked from network); 17 Jul 1998 08:57:42 -0000
Received: from hermes.ex.ac.uk (HELO exeter.ac.uk) (144.173.6.14)
  by pat.bath.ac.uk with SMTP; 17 Jul 1998 08:57:42 -0000
Received: from noether [144.173.8.10] by hermes via SMTP (JAA14479); Fri, 17 Jul 1998 09:53:44 +0100 (BST)
Received: from zeno.maths.exeter.ac.uk by maths.ex.ac.uk; Fri, 17 Jul 1998 09:53:25 +0100
From: james@maths.ex.ac.uk
Message-Id: <3690.199807170853@zeno.maths.exeter.ac.uk>
Subject: Re: Csound list postings
To: Eric Scheirer 
Date: Fri, 17 Jul 1998 09:53:24 +0100 (BST)
Cc: csound@maths.ex.ac.uk, electronica@maths.ex.ac.uk
In-Reply-To: <35AE1CFE.10E3C1DC@media.mit.edu> from "Eric Scheirer" at Jul 16, 98 11:32:14 am
X-Mailer: ELM [version 2.4 PL25]
MIME-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit
Sender: owner-csound-outgoing@maths.ex.ac.uk
Precedence: bulk

Eric Scheirer wrote
>
>Hi James,
>
>My postings to the Csound list don't seem to get through.
>At least, I don't seem to get copies.  Can you check to
>see that I'm properly subscribed?

Eric, the email machine had its operating system upgraded yesterday
Normally this wouldnt be a problem, there would be some disruption to
service but 99.9% of messages would get queued and delivered later.

However in this case the mail aliases database which is vital to the
email list server unexpectedly got deleted.
So when the machine came back and started accepting queued messages all
the traffic to csound bounced.

I got the alias file from backups and as far as I know the csound and
electronica email lists are running again.

Sorry for any inconvience, these things happen

-- 
http://www.maths.ex.ac.uk/~james/tekno
Watch out for "Medium Length Hair" EP on Science City(Sci 12)
Most Intelligent Customers Realize Our Software is Only for Fools and Teenagers



Received: from stork.maths.bath.ac.uk by omphalos.maths.Bath.AC.UK id aa05592;
          17 Jul 98 8:24 BST
Received: from mercury.bath.ac.uk by stork.maths.Bath.AC.UK id aa10077;
          17 Jul 98 8:24 BST
Received: (qmail 2990 invoked from network); 17 Jul 1998 07:24:25 -0000
Received: from hermes.ex.ac.uk (HELO exeter.ac.uk) (144.173.6.14)
  by mercury.bath.ac.uk with SMTP; 17 Jul 1998 07:24:25 -0000
Received: from noether [144.173.8.10] by hermes via SMTP (IAA15290); Fri, 17 Jul 1998 08:19:51 +0100 (BST)
Received: from exeter.ac.uk by maths.ex.ac.uk; Fri, 17 Jul 1998 08:19:40 +0100
Received: from [193.121.99.70] by hermes via ESMTP (IAA13053); Fri, 17 Jul 1998 08:19:29 +0100 (BST)
Received: from turing.hogent.be ([193.190.88.183]) by hurricane.netgate.be
          (post.office MTA v2.0 0813 ID# 0-32575U60) with ESMTP id AAC292
          for ; Fri, 17 Jul 1998 09:24:34 +0200
From: David Schuyeteneer 
To: Csound List 
Subject: Fw: RANDOM NUMBERS
Date: Fri, 17 Jul 1998 09:00:47 +0200
X-MSMail-Priority: Normal
X-Priority: 3
X-Mailer: Microsoft Internet Mail 4.70.1155
MIME-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
Message-ID: <19980717072302761.AAC292@turing.hogent.be>
Sender: owner-csound-outgoing@maths.ex.ac.uk
Precedence: bulk

This is from Paul Ruston, he has difficulties with his mailserver and asked
me
to forward it.

later,
David.

 
> I hope I'm not displaying my ignorance here or encouraging the
> antagonism between the two of you but doesn't Jean Piche's formula
> produce  -1's and  0's instead of  -1's and +1's ?
> 
> k1 	rand	1
> k2 	= 	int(k1+1)-1
> 
> What do you think of these suggestions?  Is one better than the other?
> (variations of Erik Spjut's suggestion)
> 
> k1 rnd(1)
> k2=2*int(2*k1)-1
> 
> or 
> 
> k1 rand 1
> k2 = 2*int(2*abs(k1))-1
> 
> And I apologize.  I am one of those that does not fully understand the
> random functions (but I'm working on it).  Thanks again. 



Received: from stork.maths.bath.ac.uk by omphalos.maths.Bath.AC.UK id aa06718;
          17 Jul 98 9:57 BST
Received: from pat.bath.ac.uk by stork.maths.Bath.AC.UK id aa16840;
          17 Jul 98 9:57 BST
Received: (qmail 17184 invoked from network); 17 Jul 1998 08:57:42 -0000
Received: from hermes.ex.ac.uk (HELO exeter.ac.uk) (144.173.6.14)
  by pat.bath.ac.uk with SMTP; 17 Jul 1998 08:57:42 -0000
Received: from noether [144.173.8.10] by hermes via SMTP (JAA14479); Fri, 17 Jul 1998 09:53:44 +0100 (BST)
Received: from zeno.maths.exeter.ac.uk by maths.ex.ac.uk; Fri, 17 Jul 1998 09:53:25 +0100
From: james@maths.ex.ac.uk
Message-Id: <3690.199807170853@zeno.maths.exeter.ac.uk>
Subject: Re: Csound list postings
To: Eric Scheirer 
Date: Fri, 17 Jul 1998 09:53:24 +0100 (BST)
Cc: csound@maths.ex.ac.uk, electronica@maths.ex.ac.uk
In-Reply-To: <35AE1CFE.10E3C1DC@media.mit.edu> from "Eric Scheirer" at Jul 16, 98 11:32:14 am
X-Mailer: ELM [version 2.4 PL25]
MIME-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit
Sender: owner-csound-outgoing@maths.ex.ac.uk
Precedence: bulk

Eric Scheirer wrote
>
>Hi James,
>
>My postings to the Csound list don't seem to get through.
>At least, I don't seem to get copies.  Can you check to
>see that I'm properly subscribed?

Eric, the email machine had its operating system upgraded yesterday
Normally this wouldnt be a problem, there would be some disruption to
service but 99.9% of messages would get queued and delivered later.

However in this case the mail aliases database which is vital to the
email list server unexpectedly got deleted.
So when the machine came back and started accepting queued messages all
the traffic to csound bounced.

I got the alias file from backups and as far as I know the csound and
electronica email lists are running again.

Sorry for any inconvience, these things happen

-- 
http://www.maths.ex.ac.uk/~james/tekno
Watch out for "Medium Length Hair" EP on Science City(Sci 12)
Most Intelligent Customers Realize Our Software is Only for Fools and Teenagers



Received: from stork.maths.bath.ac.uk by omphalos.maths.Bath.AC.UK id aa05592;
          17 Jul 98 8:24 BST
Received: from mercury.bath.ac.uk by stork.maths.Bath.AC.UK id aa10077;
          17 Jul 98 8:24 BST
Received: (qmail 2990 invoked from network); 17 Jul 1998 07:24:25 -0000
Received: from hermes.ex.ac.uk (HELO exeter.ac.uk) (144.173.6.14)
  by mercury.bath.ac.uk with SMTP; 17 Jul 1998 07:24:25 -0000
Received: from noether [144.173.8.10] by hermes via SMTP (IAA15290); Fri, 17 Jul 1998 08:19:51 +0100 (BST)
Received: from exeter.ac.uk by maths.ex.ac.uk; Fri, 17 Jul 1998 08:19:40 +0100
Received: from [193.121.99.70] by hermes via ESMTP (IAA13053); Fri, 17 Jul 1998 08:19:29 +0100 (BST)
Received: from turing.hogent.be ([193.190.88.183]) by hurricane.netgate.be
          (post.office MTA v2.0 0813 ID# 0-32575U60) with ESMTP id AAC292
          for ; Fri, 17 Jul 1998 09:24:34 +0200
From: David Schuyeteneer 
To: Csound List 
Subject: Fw: RANDOM NUMBERS
Date: Fri, 17 Jul 1998 09:00:47 +0200
X-MSMail-Priority: Normal
X-Priority: 3
X-Mailer: Microsoft Internet Mail 4.70.1155
MIME-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
Message-ID: <19980717072302761.AAC292@turing.hogent.be>
Sender: owner-csound-outgoing@maths.ex.ac.uk
Precedence: bulk

This is from Paul Ruston, he has difficulties with his mailserver and asked
me
to forward it.

later,
David.

 
> I hope I'm not displaying my ignorance here or encouraging the
> antagonism between the two of you but doesn't Jean Piche's formula
> produce  -1's and  0's instead of  -1's and +1's ?
> 
> k1 	rand	1
> k2 	= 	int(k1+1)-1
> 
> What do you think of these suggestions?  Is one better than the other?
> (variations of Erik Spjut's suggestion)
> 
> k1 rnd(1)
> k2=2*int(2*k1)-1
> 
> or 
> 
> k1 rand 1
> k2 = 2*int(2*abs(k1))-1
> 
> And I apologize.  I am one of those that does not fully understand the
> random functions (but I'm working on it).  Thanks again. 



Received: from stork.maths.bath.ac.uk by omphalos.maths.Bath.AC.UK id aa06718;
          17 Jul 98 9:57 BST
Received: from pat.bath.ac.uk by stork.maths.Bath.AC.UK id aa16840;
          17 Jul 98 9:57 BST
Received: (qmail 17184 invoked from network); 17 Jul 1998 08:57:42 -0000
Received: from hermes.ex.ac.uk (HELO exeter.ac.uk) (144.173.6.14)
  by pat.bath.ac.uk with SMTP; 17 Jul 1998 08:57:42 -0000
Received: from noether [144.173.8.10] by hermes via SMTP (JAA14479); Fri, 17 Jul 1998 09:53:44 +0100 (BST)
Received: from zeno.maths.exeter.ac.uk by maths.ex.ac.uk; Fri, 17 Jul 1998 09:53:25 +0100
From: james@maths.ex.ac.uk
Message-Id: <3690.199807170853@zeno.maths.exeter.ac.uk>
Subject: Re: Csound list postings
To: Eric Scheirer 
Date: Fri, 17 Jul 1998 09:53:24 +0100 (BST)
Cc: csound@maths.ex.ac.uk, electronica@maths.ex.ac.uk
In-Reply-To: <35AE1CFE.10E3C1DC@media.mit.edu> from "Eric Scheirer" at Jul 16, 98 11:32:14 am
X-Mailer: ELM [version 2.4 PL25]
MIME-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit
Sender: owner-csound-outgoing@maths.ex.ac.uk
Precedence: bulk

Eric Scheirer wrote
>
>Hi James,
>
>My postings to the Csound list don't seem to get through.
>At least, I don't seem to get copies.  Can you check to
>see that I'm properly subscribed?

Eric, the email machine had its operating system upgraded yesterday
Normally this wouldnt be a problem, there would be some disruption to
service but 99.9% of messages would get queued and delivered later.

However in this case the mail aliases database which is vital to the
email list server unexpectedly got deleted.
So when the machine came back and started accepting queued messages all
the traffic to csound bounced.

I got the alias file from backups and as far as I know the csound and
electronica email lists are running again.

Sorry for any inconvience, these things happen

-- 
http://www.maths.ex.ac.uk/~james/tekno
Watch out for "Medium Length Hair" EP on Science City(Sci 12)
Most Intelligent Customers Realize Our Software is Only for Fools and Teenagers



Received: from stork.maths.bath.ac.uk by omphalos.maths.Bath.AC.UK id aa05592;
          17 Jul 98 8:24 BST
Received: from mercury.bath.ac.uk by stork.maths.Bath.AC.UK id aa10077;
          17 Jul 98 8:24 BST
Received: (qmail 2990 invoked from network); 17 Jul 1998 07:24:25 -0000
Received: from hermes.ex.ac.uk (HELO exeter.ac.uk) (144.173.6.14)
  by mercury.bath.ac.uk with SMTP; 17 Jul 1998 07:24:25 -0000
Received: from noether [144.173.8.10] by hermes via SMTP (IAA15290); Fri, 17 Jul 1998 08:19:51 +0100 (BST)
Received: from exeter.ac.uk by maths.ex.ac.uk; Fri, 17 Jul 1998 08:19:40 +0100
Received: from [193.121.99.70] by hermes via ESMTP (IAA13053); Fri, 17 Jul 1998 08:19:29 +0100 (BST)
Received: from turing.hogent.be ([193.190.88.183]) by hurricane.netgate.be
          (post.office MTA v2.0 0813 ID# 0-32575U60) with ESMTP id AAC292
          for ; Fri, 17 Jul 1998 09:24:34 +0200
From: David Schuyeteneer 
To: Csound List 
Subject: Fw: RANDOM NUMBERS
Date: Fri, 17 Jul 1998 09:00:47 +0200
X-MSMail-Priority: Normal
X-Priority: 3
X-Mailer: Microsoft Internet Mail 4.70.1155
MIME-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
Message-ID: <19980717072302761.AAC292@turing.hogent.be>
Sender: owner-csound-outgoing@maths.ex.ac.uk
Precedence: bulk

This is from Paul Ruston, he has difficulties with his mailserver and asked
me
to forward it.

later,
David.

 
> I hope I'm not displaying my ignorance here or encouraging the
> antagonism between the two of you but doesn't Jean Piche's formula
> produce  -1's and  0's instead of  -1's and +1's ?
> 
> k1 	rand	1
> k2 	= 	int(k1+1)-1
> 
> What do you think of these suggestions?  Is one better than the other?
> (variations of Erik Spjut's suggestion)
> 
> k1 rnd(1)
> k2=2*int(2*k1)-1
> 
> or 
> 
> k1 rand 1
> k2 = 2*int(2*abs(k1))-1
> 
> And I apologize.  I am one of those that does not fully understand the
> random functions (but I'm working on it).  Thanks again. 



Received: from stork.maths.bath.ac.uk by omphalos.maths.Bath.AC.UK id aa06718;
          17 Jul 98 9:57 BST
Received: from pat.bath.ac.uk by stork.maths.Bath.AC.UK id aa16840;
          17 Jul 98 9:57 BST
Received: (qmail 17184 invoked from network); 17 Jul 1998 08:57:42 -0000
Received: from hermes.ex.ac.uk (HELO exeter.ac.uk) (144.173.6.14)
  by pat.bath.ac.uk with SMTP; 17 Jul 1998 08:57:42 -0000
Received: from noether [144.173.8.10] by hermes via SMTP (JAA14479); Fri, 17 Jul 1998 09:53:44 +0100 (BST)
Received: from zeno.maths.exeter.ac.uk by maths.ex.ac.uk; Fri, 17 Jul 1998 09:53:25 +0100
From: james@maths.ex.ac.uk
Message-Id: <3690.199807170853@zeno.maths.exeter.ac.uk>
Subject: Re: Csound list postings
To: Eric Scheirer 
Date: Fri, 17 Jul 1998 09:53:24 +0100 (BST)
Cc: csound@maths.ex.ac.uk, electronica@maths.ex.ac.uk
In-Reply-To: <35AE1CFE.10E3C1DC@media.mit.edu> from "Eric Scheirer" at Jul 16, 98 11:32:14 am
X-Mailer: ELM [version 2.4 PL25]
MIME-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit
Sender: owner-csound-outgoing@maths.ex.ac.uk
Precedence: bulk

Eric Scheirer wrote
>
>Hi James,
>
>My postings to the Csound list don't seem to get through.
>At least, I don't seem to get copies.  Can you check to
>see that I'm properly subscribed?

Eric, the email machine had its operating system upgraded yesterday
Normally this wouldnt be a problem, there would be some disruption to
service but 99.9% of messages would get queued and delivered later.

However in this case the mail aliases database which is vital to the
email list server unexpectedly got deleted.
So when the machine came back and started accepting queued messages all
the traffic to csound bounced.

I got the alias file from backups and as far as I know the csound and
electronica email lists are running again.

Sorry for any inconvience, these things happen

-- 
http://www.maths.ex.ac.uk/~james/tekno
Watch out for "Medium Length Hair" EP on Science City(Sci 12)
Most Intelligent Customers Realize Our Software is Only for Fools and Teenagers



Received: from stork.maths.bath.ac.uk by omphalos.maths.Bath.AC.UK id aa05592;
          17 Jul 98 8:24 BST
Received: from mercury.bath.ac.uk by stork.maths.Bath.AC.UK id aa10077;
          17 Jul 98 8:24 BST
Received: (qmail 2990 invoked from network); 17 Jul 1998 07:24:25 -0000
Received: from hermes.ex.ac.uk (HELO exeter.ac.uk) (144.173.6.14)
  by mercury.bath.ac.uk with SMTP; 17 Jul 1998 07:24:25 -0000
Received: from noether [144.173.8.10] by hermes via SMTP (IAA15290); Fri, 17 Jul 1998 08:19:51 +0100 (BST)
Received: from exeter.ac.uk by maths.ex.ac.uk; Fri, 17 Jul 1998 08:19:40 +0100
Received: from [193.121.99.70] by hermes via ESMTP (IAA13053); Fri, 17 Jul 1998 08:19:29 +0100 (BST)
Received: from turing.hogent.be ([193.190.88.183]) by hurricane.netgate.be
          (post.office MTA v2.0 0813 ID# 0-32575U60) with ESMTP id AAC292
          for ; Fri, 17 Jul 1998 09:24:34 +0200
From: David Schuyeteneer 
To: Csound List 
Subject: Fw: RANDOM NUMBERS
Date: Fri, 17 Jul 1998 09:00:47 +0200
X-MSMail-Priority: Normal
X-Priority: 3
X-Mailer: Microsoft Internet Mail 4.70.1155
MIME-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
Message-ID: <19980717072302761.AAC292@turing.hogent.be>
Sender: owner-csound-outgoing@maths.ex.ac.uk
Precedence: bulk

This is from Paul Ruston, he has difficulties with his mailserver and asked
me
to forward it.

later,
David.

 
> I hope I'm not displaying my ignorance here or encouraging the
> antagonism between the two of you but doesn't Jean Piche's formula
> produce  -1's and  0's instead of  -1's and +1's ?
> 
> k1 	rand	1
> k2 	= 	int(k1+1)-1
> 
> What do you think of these suggestions?  Is one better than the other?
> (variations of Erik Spjut's suggestion)
> 
> k1 rnd(1)
> k2=2*int(2*k1)-1
> 
> or 
> 
> k1 rand 1
> k2 = 2*int(2*abs(k1))-1
> 
> And I apologize.  I am one of those that does not fully understand the
> random functions (but I'm working on it).  Thanks again. 



Received: from stork.maths.bath.ac.uk by omphalos.maths.Bath.AC.UK id aa06718;
          17 Jul 98 9:57 BST
Received: from pat.bath.ac.uk by stork.maths.Bath.AC.UK id aa16840;
          17 Jul 98 9:57 BST
Received: (qmail 17184 invoked from network); 17 Jul 1998 08:57:42 -0000
Received: from hermes.ex.ac.uk (HELO exeter.ac.uk) (144.173.6.14)
  by pat.bath.ac.uk with SMTP; 17 Jul 1998 08:57:42 -0000
Received: from noether [144.173.8.10] by hermes via SMTP (JAA14479); Fri, 17 Jul 1998 09:53:44 +0100 (BST)
Received: from zeno.maths.exeter.ac.uk by maths.ex.ac.uk; Fri, 17 Jul 1998 09:53:25 +0100
From: james@maths.ex.ac.uk
Message-Id: <3690.199807170853@zeno.maths.exeter.ac.uk>
Subject: Re: Csound list postings
To: Eric Scheirer 
Date: Fri, 17 Jul 1998 09:53:24 +0100 (BST)
Cc: csound@maths.ex.ac.uk, electronica@maths.ex.ac.uk
In-Reply-To: <35AE1CFE.10E3C1DC@media.mit.edu> from "Eric Scheirer" at Jul 16, 98 11:32:14 am
X-Mailer: ELM [version 2.4 PL25]
MIME-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit
Sender: owner-csound-outgoing@maths.ex.ac.uk
Precedence: bulk

Eric Scheirer wrote
>
>Hi James,
>
>My postings to the Csound list don't seem to get through.
>At least, I don't seem to get copies.  Can you check to
>see that I'm properly subscribed?

Eric, the email machine had its operating system upgraded yesterday
Normally this wouldnt be a problem, there would be some disruption to
service but 99.9% of messages would get queued and delivered later.

However in this case the mail aliases database which is vital to the
email list server unexpectedly got deleted.
So when the machine came back and started accepting queued messages all
the traffic to csound bounced.

I got the alias file from backups and as far as I know the csound and
electronica email lists are running again.

Sorry for any inconvience, these things happen

-- 
http://www.maths.ex.ac.uk/~james/tekno
Watch out for "Medium Length Hair" EP on Science City(Sci 12)
Most Intelligent Customers Realize Our Software is Only for Fools and Teenagers



Received: from stork.maths.bath.ac.uk by omphalos.maths.Bath.AC.UK id aa05592;
          17 Jul 98 8:24 BST
Received: from mercury.bath.ac.uk by stork.maths.Bath.AC.UK id aa10077;
          17 Jul 98 8:24 BST
Received: (qmail 2990 invoked from network); 17 Jul 1998 07:24:25 -0000
Received: from hermes.ex.ac.uk (HELO exeter.ac.uk) (144.173.6.14)
  by mercury.bath.ac.uk with SMTP; 17 Jul 1998 07:24:25 -0000
Received: from noether [144.173.8.10] by hermes via SMTP (IAA15290); Fri, 17 Jul 1998 08:19:51 +0100 (BST)
Received: from exeter.ac.uk by maths.ex.ac.uk; Fri, 17 Jul 1998 08:19:40 +0100
Received: from [193.121.99.70] by hermes via ESMTP (IAA13053); Fri, 17 Jul 1998 08:19:29 +0100 (BST)
Received: from turing.hogent.be ([193.190.88.183]) by hurricane.netgate.be
          (post.office MTA v2.0 0813 ID# 0-32575U60) with ESMTP id AAC292
          for ; Fri, 17 Jul 1998 09:24:34 +0200
From: David Schuyeteneer 
To: Csound List 
Subject: Fw: RANDOM NUMBERS
Date: Fri, 17 Jul 1998 09:00:47 +0200
X-MSMail-Priority: Normal
X-Priority: 3
X-Mailer: Microsoft Internet Mail 4.70.1155
MIME-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
Message-ID: <19980717072302761.AAC292@turing.hogent.be>
Sender: owner-csound-outgoing@maths.ex.ac.uk
Precedence: bulk

This is from Paul Ruston, he has difficulties with his mailserver and asked
me
to forward it.

later,
David.

 
> I hope I'm not displaying my ignorance here or encouraging the
> antagonism between the two of you but doesn't Jean Piche's formula
> produce  -1's and  0's instead of  -1's and +1's ?
> 
> k1 	rand	1
> k2 	= 	int(k1+1)-1
> 
> What do you think of these suggestions?  Is one better than the other?
> (variations of Erik Spjut's suggestion)
> 
> k1 rnd(1)
> k2=2*int(2*k1)-1
> 
> or 
> 
> k1 rand 1
> k2 = 2*int(2*abs(k1))-1
> 
> And I apologize.  I am one of those that does not fully understand the
> random functions (but I'm working on it).  Thanks again. 



Received: from stork.maths.bath.ac.uk by omphalos.maths.Bath.AC.UK id aa06718;
          17 Jul 98 9:57 BST
Received: from pat.bath.ac.uk by stork.maths.Bath.AC.UK id aa16840;
          17 Jul 98 9:57 BST
Received: (qmail 17184 invoked from network); 17 Jul 1998 08:57:42 -0000
Received: from hermes.ex.ac.uk (HELO exeter.ac.uk) (144.173.6.14)
  by pat.bath.ac.uk with SMTP; 17 Jul 1998 08:57:42 -0000
Received: from noether [144.173.8.10] by hermes via SMTP (JAA14479); Fri, 17 Jul 1998 09:53:44 +0100 (BST)
Received: from zeno.maths.exeter.ac.uk by maths.ex.ac.uk; Fri, 17 Jul 1998 09:53:25 +0100
From: james@maths.ex.ac.uk
Message-Id: <3690.199807170853@zeno.maths.exeter.ac.uk>
Subject: Re: Csound list postings
To: Eric Scheirer 
Date: Fri, 17 Jul 1998 09:53:24 +0100 (BST)
Cc: csound@maths.ex.ac.uk, electronica@maths.ex.ac.uk
In-Reply-To: <35AE1CFE.10E3C1DC@media.mit.edu> from "Eric Scheirer" at Jul 16, 98 11:32:14 am
X-Mailer: ELM [version 2.4 PL25]
MIME-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit
Sender: owner-csound-outgoing@maths.ex.ac.uk
Precedence: bulk

Eric Scheirer wrote
>
>Hi James,
>
>My postings to the Csound list don't seem to get through.
>At least, I don't seem to get copies.  Can you check to
>see that I'm properly subscribed?

Eric, the email machine had its operating system upgraded yesterday
Normally this wouldnt be a problem, there would be some disruption to
service but 99.9% of messages would get queued and delivered later.

However in this case the mail aliases database which is vital to the
email list server unexpectedly got deleted.
So when the machine came back and started accepting queued messages all
the traffic to csound bounced.

I got the alias file from backups and as far as I know the csound and
electronica email lists are running again.

Sorry for any inconvience, these things happen

-- 
http://www.maths.ex.ac.uk/~james/tekno
Watch out for "Medium Length Hair" EP on Science City(Sci 12)
Most Intelligent Customers Realize Our Software is Only for Fools and Teenagers



Received: from stork.maths.bath.ac.uk by omphalos.maths.Bath.AC.UK id aa05592;
          17 Jul 98 8:24 BST
Received: from mercury.bath.ac.uk by stork.maths.Bath.AC.UK id aa10077;
          17 Jul 98 8:24 BST
Received: (qmail 2990 invoked from network); 17 Jul 1998 07:24:25 -0000
Received: from hermes.ex.ac.uk (HELO exeter.ac.uk) (144.173.6.14)
  by mercury.bath.ac.uk with SMTP; 17 Jul 1998 07:24:25 -0000
Received: from noether [144.173.8.10] by hermes via SMTP (IAA15290); Fri, 17 Jul 1998 08:19:51 +0100 (BST)
Received: from exeter.ac.uk by maths.ex.ac.uk; Fri, 17 Jul 1998 08:19:40 +0100
Received: from [193.121.99.70] by hermes via ESMTP (IAA13053); Fri, 17 Jul 1998 08:19:29 +0100 (BST)
Received: from turing.hogent.be ([193.190.88.183]) by hurricane.netgate.be
          (post.office MTA v2.0 0813 ID# 0-32575U60) with ESMTP id AAC292
          for ; Fri, 17 Jul 1998 09:24:34 +0200
From: David Schuyeteneer 
To: Csound List 
Subject: Fw: RANDOM NUMBERS
Date: Fri, 17 Jul 1998 09:00:47 +0200
X-MSMail-Priority: Normal
X-Priority: 3
X-Mailer: Microsoft Internet Mail 4.70.1155
MIME-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
Message-ID: <19980717072302761.AAC292@turing.hogent.be>
Sender: owner-csound-outgoing@maths.ex.ac.uk
Precedence: bulk

This is from Paul Ruston, he has difficulties with his mailserver and asked
me
to forward it.

later,
David.

 
> I hope I'm not displaying my ignorance here or encouraging the
> antagonism between the two of you but doesn't Jean Piche's formula
> produce  -1's and  0's instead of  -1's and +1's ?
> 
> k1 	rand	1
> k2 	= 	int(k1+1)-1
> 
> What do you think of these suggestions?  Is one better than the other?
> (variations of Erik Spjut's suggestion)
> 
> k1 rnd(1)
> k2=2*int(2*k1)-1
> 
> or 
> 
> k1 rand 1
> k2 = 2*int(2*abs(k1))-1
> 
> And I apologize.  I am one of those that does not fully understand the
> random functions (but I'm working on it).  Thanks again. 



Received: from stork.maths.bath.ac.uk by omphalos.maths.Bath.AC.UK id aa06718;
          17 Jul 98 9:57 BST
Received: from pat.bath.ac.uk by stork.maths.Bath.AC.UK id aa16840;
          17 Jul 98 9:57 BST
Received: (qmail 17184 invoked from network); 17 Jul 1998 08:57:42 -0000
Received: from hermes.ex.ac.uk (HELO exeter.ac.uk) (144.173.6.14)
  by pat.bath.ac.uk with SMTP; 17 Jul 1998 08:57:42 -0000
Received: from noether [144.173.8.10] by hermes via SMTP (JAA14479); Fri, 17 Jul 1998 09:53:44 +0100 (BST)
Received: from zeno.maths.exeter.ac.uk by maths.ex.ac.uk; Fri, 17 Jul 1998 09:53:25 +0100
From: james@maths.ex.ac.uk
Message-Id: <3690.199807170853@zeno.maths.exeter.ac.uk>
Subject: Re: Csound list postings
To: Eric Scheirer 
Date: Fri, 17 Jul 1998 09:53:24 +0100 (BST)
Cc: csound@maths.ex.ac.uk, electronica@maths.ex.ac.uk
In-Reply-To: <35AE1CFE.10E3C1DC@media.mit.edu> from "Eric Scheirer" at Jul 16, 98 11:32:14 am
X-Mailer: ELM [version 2.4 PL25]
MIME-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit
Sender: owner-csound-outgoing@maths.ex.ac.uk
Precedence: bulk

Eric Scheirer wrote
>
>Hi James,
>
>My postings to the Csound list don't seem to get through.
>At least, I don't seem to get copies.  Can you check to
>see that I'm properly subscribed?

Eric, the email machine had its operating system upgraded yesterday
Normally this wouldnt be a problem, there would be some disruption to
service but 99.9% of messages would get queued and delivered later.

However in this case the mail aliases database which is vital to the
email list server unexpectedly got deleted.
So when the machine came back and started accepting queued messages all
the traffic to csound bounced.

I got the alias file from backups and as far as I know the csound and
electronica email lists are running again.

Sorry for any inconvience, these things happen

-- 
http://www.maths.ex.ac.uk/~james/tekno
Watch out for "Medium Length Hair" EP on Science City(Sci 12)
Most Intelligent Customers Realize Our Software is Only for Fools and Teenagers



Received: from stork.maths.bath.ac.uk by omphalos.maths.Bath.AC.UK id aa05592;
          17 Jul 98 8:24 BST
Received: from mercury.bath.ac.uk by stork.maths.Bath.AC.UK id aa10077;
          17 Jul 98 8:24 BST
Received: (qmail 2990 invoked from network); 17 Jul 1998 07:24:25 -0000
Received: from hermes.ex.ac.uk (HELO exeter.ac.uk) (144.173.6.14)
  by mercury.bath.ac.uk with SMTP; 17 Jul 1998 07:24:25 -0000
Received: from noether [144.173.8.10] by hermes via SMTP (IAA15290); Fri, 17 Jul 1998 08:19:51 +0100 (BST)
Received: from exeter.ac.uk by maths.ex.ac.uk; Fri, 17 Jul 1998 08:19:40 +0100
Received: from [193.121.99.70] by hermes via ESMTP (IAA13053); Fri, 17 Jul 1998 08:19:29 +0100 (BST)
Received: from turing.hogent.be ([193.190.88.183]) by hurricane.netgate.be
          (post.office MTA v2.0 0813 ID# 0-32575U60) with ESMTP id AAC292
          for ; Fri, 17 Jul 1998 09:24:34 +0200
From: David Schuyeteneer 
To: Csound List 
Subject: Fw: RANDOM NUMBERS
Date: Fri, 17 Jul 1998 09:00:47 +0200
X-MSMail-Priority: Normal
X-Priority: 3
X-Mailer: Microsoft Internet Mail 4.70.1155
MIME-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
Message-ID: <19980717072302761.AAC292@turing.hogent.be>
Sender: owner-csound-outgoing@maths.ex.ac.uk
Precedence: bulk

This is from Paul Ruston, he has difficulties with his mailserver and asked
me
to forward it.

later,
David.

 
> I hope I'm not displaying my ignorance here or encouraging the
> antagonism between the two of you but doesn't Jean Piche's formula
> produce  -1's and  0's instead of  -1's and +1's ?
> 
> k1 	rand	1
> k2 	= 	int(k1+1)-1
> 
> What do you think of these suggestions?  Is one better than the other?
> (variations of Erik Spjut's suggestion)
> 
> k1 rnd(1)
> k2=2*int(2*k1)-1
> 
> or 
> 
> k1 rand 1
> k2 = 2*int(2*abs(k1))-1
> 
> And I apologize.  I am one of those that does not fully understand the
> random functions (but I'm working on it).  Thanks again. 



Received: from stork.maths.bath.ac.uk by omphalos.maths.Bath.AC.UK id aa06718;
          17 Jul 98 9:57 BST
Received: from pat.bath.ac.uk by stork.maths.Bath.AC.UK id aa16840;
          17 Jul 98 9:57 BST
Received: (qmail 17184 invoked from network); 17 Jul 1998 08:57:42 -0000
Received: from hermes.ex.ac.uk (HELO exeter.ac.uk) (144.173.6.14)
  by pat.bath.ac.uk with SMTP; 17 Jul 1998 08:57:42 -0000
Received: from noether [144.173.8.10] by hermes via SMTP (JAA14479); Fri, 17 Jul 1998 09:53:44 +0100 (BST)
Received: from zeno.maths.exeter.ac.uk by maths.ex.ac.uk; Fri, 17 Jul 1998 09:53:25 +0100
From: james@maths.ex.ac.uk
Message-Id: <3690.199807170853@zeno.maths.exeter.ac.uk>
Subject: Re: Csound list postings
To: Eric Scheirer 
Date: Fri, 17 Jul 1998 09:53:24 +0100 (BST)
Cc: csound@maths.ex.ac.uk, electronica@maths.ex.ac.uk
In-Reply-To: <35AE1CFE.10E3C1DC@media.mit.edu> from "Eric Scheirer" at Jul 16, 98 11:32:14 am
X-Mailer: ELM [version 2.4 PL25]
MIME-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit
Sender: owner-csound-outgoing@maths.ex.ac.uk
Precedence: bulk

Eric Scheirer wrote
>
>Hi James,
>
>My postings to the Csound list don't seem to get through.
>At least, I don't seem to get copies.  Can you check to
>see that I'm properly subscribed?

Eric, the email machine had its operating system upgraded yesterday
Normally this wouldnt be a problem, there would be some disruption to
service but 99.9% of messages would get queued and delivered later.

However in this case the mail aliases database which is vital to the
email list server unexpectedly got deleted.
So when the machine came back and started accepting queued messages all
the traffic to csound bounced.

I got the alias file from backups and as far as I know the csound and
electronica email lists are running again.

Sorry for any inconvience, these things happen

-- 
http://www.maths.ex.ac.uk/~james/tekno
Watch out for "Medium Length Hair" EP on Science City(Sci 12)
Most Intelligent Customers Realize Our Software is Only for Fools and Teenagers



Received: from stork.maths.bath.ac.uk by omphalos.maths.Bath.AC.UK id aa05592;
          17 Jul 98 8:24 BST
Received: from mercury.bath.ac.uk by stork.maths.Bath.AC.UK id aa10077;
          17 Jul 98 8:24 BST
Received: (qmail 2990 invoked from network); 17 Jul 1998 07:24:25 -0000
Received: from hermes.ex.ac.uk (HELO exeter.ac.uk) (144.173.6.14)
  by mercury.bath.ac.uk with SMTP; 17 Jul 1998 07:24:25 -0000
Received: from noether [144.173.8.10] by hermes via SMTP (IAA15290); Fri, 17 Jul 1998 08:19:51 +0100 (BST)
Received: from exeter.ac.uk by maths.ex.ac.uk; Fri, 17 Jul 1998 08:19:40 +0100
Received: from [193.121.99.70] by hermes via ESMTP (IAA13053); Fri, 17 Jul 1998 08:19:29 +0100 (BST)
Received: from turing.hogent.be ([193.190.88.183]) by hurricane.netgate.be
          (post.office MTA v2.0 0813 ID# 0-32575U60) with ESMTP id AAC292
          for ; Fri, 17 Jul 1998 09:24:34 +0200
From: David Schuyeteneer 
To: Csound List 
Subject: Fw: RANDOM NUMBERS
Date: Fri, 17 Jul 1998 09:00:47 +0200
X-MSMail-Priority: Normal
X-Priority: 3
X-Mailer: Microsoft Internet Mail 4.70.1155
MIME-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
Message-ID: <19980717072302761.AAC292@turing.hogent.be>
Sender: owner-csound-outgoing@maths.ex.ac.uk
Precedence: bulk

This is from Paul Ruston, he has difficulties with his mailserver and asked
me
to forward it.

later,
David.

 
> I hope I'm not displaying my ignorance here or encouraging the
> antagonism between the two of you but doesn't Jean Piche's formula
> produce  -1's and  0's instead of  -1's and +1's ?
> 
> k1 	rand	1
> k2 	= 	int(k1+1)-1
> 
> What do you think of these suggestions?  Is one better than the other?
> (variations of Erik Spjut's suggestion)
> 
> k1 rnd(1)
> k2=2*int(2*k1)-1
> 
> or 
> 
> k1 rand 1
> k2 = 2*int(2*abs(k1))-1
> 
> And I apologize.  I am one of those that does not fully understand the
> random functions (but I'm working on it).  Thanks again. 



Received: from stork.maths.bath.ac.uk by omphalos.maths.Bath.AC.UK id aa06718;
          17 Jul 98 9:57 BST
Received: from pat.bath.ac.uk by stork.maths.Bath.AC.UK id aa16840;
          17 Jul 98 9:57 BST
Received: (qmail 17184 invoked from network); 17 Jul 1998 08:57:42 -0000
Received: from hermes.ex.ac.uk (HELO exeter.ac.uk) (144.173.6.14)
  by pat.bath.ac.uk with SMTP; 17 Jul 1998 08:57:42 -0000
Received: from noether [144.173.8.10] by hermes via SMTP (JAA14479); Fri, 17 Jul 1998 09:53:44 +0100 (BST)
Received: from zeno.maths.exeter.ac.uk by maths.ex.ac.uk; Fri, 17 Jul 1998 09:53:25 +0100
From: james@maths.ex.ac.uk
Message-Id: <3690.199807170853@zeno.maths.exeter.ac.uk>
Subject: Re: Csound list postings
To: Eric Scheirer 
Date: Fri, 17 Jul 1998 09:53:24 +0100 (BST)
Cc: csound@maths.ex.ac.uk, electronica@maths.ex.ac.uk
In-Reply-To: <35AE1CFE.10E3C1DC@media.mit.edu> from "Eric Scheirer" at Jul 16, 98 11:32:14 am
X-Mailer: ELM [version 2.4 PL25]
MIME-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit
Sender: owner-csound-outgoing@maths.ex.ac.uk
Precedence: bulk

Eric Scheirer wrote
>
>Hi James,
>
>My postings to the Csound list don't seem to get through.
>At least, I don't seem to get copies.  Can you check to
>see that I'm properly subscribed?

Eric, the email machine had its operating system upgraded yesterday
Normally this wouldnt be a problem, there would be some disruption to
service but 99.9% of messages would get queued and delivered later.

However in this case the mail aliases database which is vital to the
email list server unexpectedly got deleted.
So when the machine came back and started accepting queued messages all
the traffic to csound bounced.

I got the alias file from backups and as far as I know the csound and
electronica email lists are running again.

Sorry for any inconvience, these things happen

-- 
http://www.maths.ex.ac.uk/~james/tekno
Watch out for "Medium Length Hair" EP on Science City(Sci 12)
Most Intelligent Customers Realize Our Software is Only for Fools and Teenagers



Received: from stork.maths.bath.ac.uk by omphalos.maths.Bath.AC.UK id aa05592;
          17 Jul 98 8:24 BST
Received: from mercury.bath.ac.uk by stork.maths.Bath.AC.UK id aa10077;
          17 Jul 98 8:24 BST
Received: (qmail 2990 invoked from network); 17 Jul 1998 07:24:25 -0000
Received: from hermes.ex.ac.uk (HELO exeter.ac.uk) (144.173.6.14)
  by mercury.bath.ac.uk with SMTP; 17 Jul 1998 07:24:25 -0000
Received: from noether [144.173.8.10] by hermes via SMTP (IAA15290); Fri, 17 Jul 1998 08:19:51 +0100 (BST)
Received: from exeter.ac.uk by maths.ex.ac.uk; Fri, 17 Jul 1998 08:19:40 +0100
Received: from [193.121.99.70] by hermes via ESMTP (IAA13053); Fri, 17 Jul 1998 08:19:29 +0100 (BST)
Received: from turing.hogent.be ([193.190.88.183]) by hurricane.netgate.be
          (post.office MTA v2.0 0813 ID# 0-32575U60) with ESMTP id AAC292
          for ; Fri, 17 Jul 1998 09:24:34 +0200
From: David Schuyeteneer 
To: Csound List 
Subject: Fw: RANDOM NUMBERS
Date: Fri, 17 Jul 1998 09:00:47 +0200
X-MSMail-Priority: Normal
X-Priority: 3
X-Mailer: Microsoft Internet Mail 4.70.1155
MIME-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
Message-ID: <19980717072302761.AAC292@turing.hogent.be>
Sender: owner-csound-outgoing@maths.ex.ac.uk
Precedence: bulk

This is from Paul Ruston, he has difficulties with his mailserver and asked
me
to forward it.

later,
David.

 
> I hope I'm not displaying my ignorance here or encouraging the
> antagonism between the two of you but doesn't Jean Piche's formula
> produce  -1's and  0's instead of  -1's and +1's ?
> 
> k1 	rand	1
> k2 	= 	int(k1+1)-1
> 
> What do you think of these suggestions?  Is one better than the other?
> (variations of Erik Spjut's suggestion)
> 
> k1 rnd(1)
> k2=2*int(2*k1)-1
> 
> or 
> 
> k1 rand 1
> k2 = 2*int(2*abs(k1))-1
> 
> And I apologize.  I am one of those that does not fully understand the
> random functions (but I'm working on it).  Thanks again. 



Received: from stork.maths.bath.ac.uk by omphalos.maths.Bath.AC.UK id aa06718;
          17 Jul 98 9:57 BST
Received: from pat.bath.ac.uk by stork.maths.Bath.AC.UK id aa16840;
          17 Jul 98 9:57 BST
Received: (qmail 17184 invoked from network); 17 Jul 1998 08:57:42 -0000
Received: from hermes.ex.ac.uk (HELO exeter.ac.uk) (144.173.6.14)
  by pat.bath.ac.uk with SMTP; 17 Jul 1998 08:57:42 -0000
Received: from noether [144.173.8.10] by hermes via SMTP (JAA14479); Fri, 17 Jul 1998 09:53:44 +0100 (BST)
Received: from zeno.maths.exeter.ac.uk by maths.ex.ac.uk; Fri, 17 Jul 1998 09:53:25 +0100
From: james@maths.ex.ac.uk
Message-Id: <3690.199807170853@zeno.maths.exeter.ac.uk>
Subject: Re: Csound list postings
To: Eric Scheirer 
Date: Fri, 17 Jul 1998 09:53:24 +0100 (BST)
Cc: csound@maths.ex.ac.uk, electronica@maths.ex.ac.uk
In-Reply-To: <35AE1CFE.10E3C1DC@media.mit.edu> from "Eric Scheirer" at Jul 16, 98 11:32:14 am
X-Mailer: ELM [version 2.4 PL25]
MIME-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit
Sender: owner-csound-outgoing@maths.ex.ac.uk
Precedence: bulk

Eric Scheirer wrote
>
>Hi James,
>
>My postings to the Csound list don't seem to get through.
>At least, I don't seem to get copies.  Can you check to
>see that I'm properly subscribed?

Eric, the email machine had its operating system upgraded yesterday
Normally this wouldnt be a problem, there would be some disruption to
service but 99.9% of messages would get queued and delivered later.

However in this case the mail aliases database which is vital to the
email list server unexpectedly got deleted.
So when the machine came back and started accepting queued messages all
the traffic to csound bounced.

I got the alias file from backups and as far as I know the csound and
electronica email lists are running again.

Sorry for any inconvience, these things happen

-- 
http://www.maths.ex.ac.uk/~james/tekno
Watch out for "Medium Length Hair" EP on Science City(Sci 12)
Most Intelligent Customers Realize Our Software is Only for Fools and Teenagers



Received: from stork.maths.bath.ac.uk by omphalos.maths.Bath.AC.UK id aa05592;
          17 Jul 98 8:24 BST
Received: from mercury.bath.ac.uk by stork.maths.Bath.AC.UK id aa10077;
          17 Jul 98 8:24 BST
Received: (qmail 2990 invoked from network); 17 Jul 1998 07:24:25 -0000
Received: from hermes.ex.ac.uk (HELO exeter.ac.uk) (144.173.6.14)
  by mercury.bath.ac.uk with SMTP; 17 Jul 1998 07:24:25 -0000
Received: from noether [144.173.8.10] by hermes via SMTP (IAA15290); Fri, 17 Jul 1998 08:19:51 +0100 (BST)
Received: from exeter.ac.uk by maths.ex.ac.uk; Fri, 17 Jul 1998 08:19:40 +0100
Received: from [193.121.99.70] by hermes via ESMTP (IAA13053); Fri, 17 Jul 1998 08:19:29 +0100 (BST)
Received: from turing.hogent.be ([193.190.88.183]) by hurricane.netgate.be
          (post.office MTA v2.0 0813 ID# 0-32575U60) with ESMTP id AAC292
          for ; Fri, 17 Jul 1998 09:24:34 +0200
From: David Schuyeteneer 
To: Csound List 
Subject: Fw: RANDOM NUMBERS
Date: Fri, 17 Jul 1998 09:00:47 +0200
X-MSMail-Priority: Normal
X-Priority: 3
X-Mailer: Microsoft Internet Mail 4.70.1155
MIME-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
Message-ID: <19980717072302761.AAC292@turing.hogent.be>
Sender: owner-csound-outgoing@maths.ex.ac.uk
Precedence: bulk

This is from Paul Ruston, he has difficulties with his mailserver and asked
me
to forward it.

later,
David.

 
> I hope I'm not displaying my ignorance here or encouraging the
> antagonism between the two of you but doesn't Jean Piche's formula
> produce  -1's and  0's instead of  -1's and +1's ?
> 
> k1 	rand	1
> k2 	= 	int(k1+1)-1
> 
> What do you think of these suggestions?  Is one better than the other?
> (variations of Erik Spjut's suggestion)
> 
> k1 rnd(1)
> k2=2*int(2*k1)-1
> 
> or 
> 
> k1 rand 1
> k2 = 2*int(2*abs(k1))-1
> 
> And I apologize.  I am one of those that does not fully understand the
> random functions (but I'm working on it).  Thanks again. 



Received: from stork.maths.bath.ac.uk by omphalos.maths.Bath.AC.UK id aa06718;
          17 Jul 98 9:57 BST
Received: from pat.bath.ac.uk by stork.maths.Bath.AC.UK id aa16840;
          17 Jul 98 9:57 BST
Received: (qmail 17184 invoked from network); 17 Jul 1998 08:57:42 -0000
Received: from hermes.ex.ac.uk (HELO exeter.ac.uk) (144.173.6.14)
  by pat.bath.ac.uk with SMTP; 17 Jul 1998 08:57:42 -0000
Received: from noether [144.173.8.10] by hermes via SMTP (JAA14479); Fri, 17 Jul 1998 09:53:44 +0100 (BST)
Received: from zeno.maths.exeter.ac.uk by maths.ex.ac.uk; Fri, 17 Jul 1998 09:53:25 +0100
From: james@maths.ex.ac.uk
Message-Id: <3690.199807170853@zeno.maths.exeter.ac.uk>
Subject: Re: Csound list postings
To: Eric Scheirer 
Date: Fri, 17 Jul 1998 09:53:24 +0100 (BST)
Cc: csound@maths.ex.ac.uk, electronica@maths.ex.ac.uk
In-Reply-To: <35AE1CFE.10E3C1DC@media.mit.edu> from "Eric Scheirer" at Jul 16, 98 11:32:14 am
X-Mailer: ELM [version 2.4 PL25]
MIME-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit
Sender: owner-csound-outgoing@maths.ex.ac.uk
Precedence: bulk

Eric Scheirer wrote
>
>Hi James,
>
>My postings to the Csound list don't seem to get through.
>At least, I don't seem to get copies.  Can you check to
>see that I'm properly subscribed?

Eric, the email machine had its operating system upgraded yesterday
Normally this wouldnt be a problem, there would be some disruption to
service but 99.9% of messages would get queued and delivered later.

However in this case the mail aliases database which is vital to the
email list server unexpectedly got deleted.
So when the machine came back and started accepting queued messages all
the traffic to csound bounced.

I got the alias file from backups and as far as I know the csound and
electronica email lists are running again.

Sorry for any inconvience, these things happen

-- 
http://www.maths.ex.ac.uk/~james/tekno
Watch out for "Medium Length Hair" EP on Science City(Sci 12)
Most Intelligent Customers Realize Our Software is Only for Fools and Teenagers



Received: from stork.maths.bath.ac.uk by omphalos.maths.Bath.AC.UK id aa05592;
          17 Jul 98 8:24 BST
Received: from mercury.bath.ac.uk by stork.maths.Bath.AC.UK id aa10077;
          17 Jul 98 8:24 BST
Received: (qmail 2990 invoked from network); 17 Jul 1998 07:24:25 -0000
Received: from hermes.ex.ac.uk (HELO exeter.ac.uk) (144.173.6.14)
  by mercury.bath.ac.uk with SMTP; 17 Jul 1998 07:24:25 -0000
Received: from noether [144.173.8.10] by hermes via SMTP (IAA15290); Fri, 17 Jul 1998 08:19:51 +0100 (BST)
Received: from exeter.ac.uk by maths.ex.ac.uk; Fri, 17 Jul 1998 08:19:40 +0100
Received: from [193.121.99.70] by hermes via ESMTP (IAA13053); Fri, 17 Jul 1998 08:19:29 +0100 (BST)
Received: from turing.hogent.be ([193.190.88.183]) by hurricane.netgate.be
          (post.office MTA v2.0 0813 ID# 0-32575U60) with ESMTP id AAC292
          for ; Fri, 17 Jul 1998 09:24:34 +0200
From: David Schuyeteneer 
To: Csound List 
Subject: Fw: RANDOM NUMBERS
Date: Fri, 17 Jul 1998 09:00:47 +0200
X-MSMail-Priority: Normal
X-Priority: 3
X-Mailer: Microsoft Internet Mail 4.70.1155
MIME-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
Message-ID: <19980717072302761.AAC292@turing.hogent.be>
Sender: owner-csound-outgoing@maths.ex.ac.uk
Precedence: bulk

This is from Paul Ruston, he has difficulties with his mailserver and asked
me
to forward it.

later,
David.

 
> I hope I'm not displaying my ignorance here or encouraging the
> antagonism between the two of you but doesn't Jean Piche's formula
> produce  -1's and  0's instead of  -1's and +1's ?
> 
> k1 	rand	1
> k2 	= 	int(k1+1)-1
> 
> What do you think of these suggestions?  Is one better than the other?
> (variations of Erik Spjut's suggestion)
> 
> k1 rnd(1)
> k2=2*int(2*k1)-1
> 
> or 
> 
> k1 rand 1
> k2 = 2*int(2*abs(k1))-1
> 
> And I apologize.  I am one of those that does not fully understand the
> random functions (but I'm working on it).  Thanks again. 



Received: from stork.maths.bath.ac.uk by omphalos.maths.Bath.AC.UK id aa06718;
          17 Jul 98 9:57 BST
Received: from pat.bath.ac.uk by stork.maths.Bath.AC.UK id aa16840;
          17 Jul 98 9:57 BST
Received: (qmail 17184 invoked from network); 17 Jul 1998 08:57:42 -0000
Received: from hermes.ex.ac.uk (HELO exeter.ac.uk) (144.173.6.14)
  by pat.bath.ac.uk with SMTP; 17 Jul 1998 08:57:42 -0000
Received: from noether [144.173.8.10] by hermes via SMTP (JAA14479); Fri, 17 Jul 1998 09:53:44 +0100 (BST)
Received: from zeno.maths.exeter.ac.uk by maths.ex.ac.uk; Fri, 17 Jul 1998 09:53:25 +0100
From: james@maths.ex.ac.uk
Message-Id: <3690.199807170853@zeno.maths.exeter.ac.uk>
Subject: Re: Csound list postings
To: Eric Scheirer 
Date: Fri, 17 Jul 1998 09:53:24 +0100 (BST)
Cc: csound@maths.ex.ac.uk, electronica@maths.ex.ac.uk
In-Reply-To: <35AE1CFE.10E3C1DC@media.mit.edu> from "Eric Scheirer" at Jul 16, 98 11:32:14 am
X-Mailer: ELM [version 2.4 PL25]
MIME-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit
Sender: owner-csound-outgoing@maths.ex.ac.uk
Precedence: bulk

Eric Scheirer wrote
>
>Hi James,
>
>My postings to the Csound list don't seem to get through.
>At least, I don't seem to get copies.  Can you check to
>see that I'm properly subscribed?

Eric, the email machine had its operating system upgraded yesterday
Normally this wouldnt be a problem, there would be some disruption to
service but 99.9% of messages would get queued and delivered later.

However in this case the mail aliases database which is vital to the
email list server unexpectedly got deleted.
So when the machine came back and started accepting queued messages all
the traffic to csound bounced.

I got the alias file from backups and as far as I know the csound and
electronica email lists are running again.

Sorry for any inconvience, these things happen

-- 
http://www.maths.ex.ac.uk/~james/tekno
Watch out for "Medium Length Hair" EP on Science City(Sci 12)
Most Intelligent Customers Realize Our Software is Only for Fools and Teenagers