search for: richardson

Displaying 20 results from an estimated 432 matches for "richardson".

Did you mean: ricardson
2005 May 05
2
Numerical Derivative / Numerical Differentiation of unknown funct ion
Hi, I have been trying to do numerical differentiation using R. I found some old S code using Richardson Extrapolation which I managed to get to work. I am posting it here in case anyone needs it. ######################################################################## richardson.grad <- function(func, x, d=0.01, eps=1e-4, r=6, show=F){ # This function calculates a numerical approximation of the...
2006 Feb 16
2
Problem with scoping a variable value
Hi there, I have a function which has a variable called show as an input: richardson.grad <- function(func, x, d=0.01, eps=1e-4, r=6, show=F){ # do some things if(show) { cat("\n","first order approximations", "\n") print(a.mtr, 12) } #do more things and return } The show variable is being used as a flag to show int...
2008 May 05
2
T38 Passthrough Verification
...'s enabled in sip.conf [general] and well as the [peer]. I get an error at the CLI: WARNING[3096]: chan_sip.c:14149 handle_request_invite: RTP re-invite after T38 session not handled yet ! sip show channels shows the call setup with ulaw. Any guidance will be appreciated. Thanks. JR -- JR Richardson Engineering for the Masses
2008 Jan 23
7
generate with spaces?
Hi, I''ve been using puppet for about a week and a half now, and it''s definitely making my life a lot easier. I''m using 0.24.1 and I''ve run into a small snag. I''m trying to write some code to make sure user home directories exist for users in LDAP. I''m trying to get their uid, gid and home directory from getent with something like: $uid =
2008 May 03
2
Stacked bar plot anomaly When column contains a negative and a positive value
...g is not handled correctly. Compare this output with that of: barplot(as.matrix(data), beside=TRUE) Shouldn't the plots look the same except in the beside=FALSE scenario the constituent bars should not be juxtaposed but instead are one on top of the other? Thanks for any advice! Murray Richardson
2008 May 28
7
Cisco Gateway sending call to * without CID Name
...server acting as the PRI gateway, the CID name is fine. 1. in the cisco, does anyone know what the command is to set a CID Name for all outbound VoIP calls? 2. is this a bug in Asterisk that will not inject CID name in a channel if it doesn't have CID name coming in first? Thanks. JR -- JR Richardson Engineering for the Masses
2004 Jan 01
4
* crash when forward voicemail --Nicolas Gudino
Hey Nicolas, That did it. I ran that export command you suggested, then launched *, everything worked fine. I'm still looking for info on what that command actually does. Can you shed some light please? Thanks. JR -----Original Message----- From: JR Richardson [mailto:jr.richardson@cox.net] Sent: Tuesday, December 30, 2003 6:44 PM To: 'asterisk-users@lists.digium.com' Subject: Re: * crash when forward voicemail message [problem solved] -----Original Message----- From: asterisk-users-admin@lists.digium.com [mailto:asterisk-users-admin@lists.di...
2010 Jan 20
1
Using SIPPEER status with CUT function? SOLVED
On Wed, Jan 20, 2010 at 2:42 PM, JR Richardson <jmr.richardson at gmail.com> wrote: > Hi All, > > I'm using Asterisk 1.4 branch and checking the status of some SIP > Peers with the functions ${SIPPEER(101:status)} and the result is "OK > (48 ms)". ?Seems to work fine. > > Now I would like to use the func...
2010 Dec 20
0
Asterisk Clustering and DUNDi J Richardson whitepaper
Hi All We're getting to the point where we need to start increasing capacity on our asterisk servers. I've had a look at the DUNDi J Richardson white paper and it seems pretty straight forward. My question is have any of you implemented this solution in a production environment? Regards Ish -- Ishfaq Malik Software Developer PackNet Ltd Office: 0161 660 3062
2008 Nov 21
2
Dendrogram labels
Is there any way to change the orientation of the labels on the end of the dendrograms to horizontal rather than vertical? If so, how can I do that. _____________________________________________ Patrick Richardson Biostatistician - Program of Translational Medicine Van Andel Research Institute - Webb Lab 333 Bostwick Avenue NE Grand Rapids, MI 49503 ph. 616.234.5787 This email message, including any attachments, is for th...{{dropped:9}}
2005 May 05
2
Numerical Derivative / Numerical Differentiation of unkno wn funct ion
...Thursday, May 05, 2005 3:21 PM > To: 'r-help at stat.math.ethz.ch' > Subject: [R] Numerical Derivative / Numerical Differentiation > of unknown funct ion > > Hi, > > I have been trying to do numerical differentiation using R. > > I found some old S code using Richardson Extrapolation which > I managed to get > to work. > > I am posting it here in case anyone needs it. > > > ############################################################## > ########## > richardson.grad <- function(func, x, d=0.01, eps=1e-4, r=6, show=F){ > # This...
2007 Aug 17
8
Quick DUNDi Poll Questions, For All Asterisk Users, Please Give Feedback
...;m interested in putting together a new-user tutorial about DUNDi configuration and setup. There is a lot of great information, setup guides already but the feedback I get is that the current examples are a bit complicated to follow for new users. Your feedback is appreciated. Thanks. JR -- JR Richardson Engineering for the Masses
2010 Jul 12
3
Multiple Ploting Colors
I'm trying to use multiple plotting colors in my code. My first "ifelse" statement successfully does what I want. However, now I want anything less than -4.5 to be green and the rest black. I want another "col" argument but can only use one. How could I go about getting separate colors for anything above 4.5 and less than -4.5? plot(three, type="h",
2007 Apr 26
1
Re: Voicemail on Different Server, Voicemail with NFS
> -----Original Message----- > From: JR Richardson [mailto:jmr.richardson@gmail.com] > Sent: Saturday, June 17, 2006 2:30 PM > To: asterisk-users@lists.digium.com; Douglas Garstang > Subject: Voicemail with NFS (working, I think) > > I'm using a stand-alone VM server and exporting the VM files ro for > MWI function only. All...
2008 May 21
4
addons-1.6 not seeing installed MySQL packages
Hi All, I'm poking around with 1.6, tried to compile the addon package, but it doesn't see mysql_config installed. I have mysql-client, mysql-common and mysql-server installed. I'm running debian etch. Any suggestions? Thanks. JR -- JR Richardson Engineering for the Masses
2010 Jan 07
4
AGI perl script set timeout within script?
...se(); # Set variables according to supplied arguments $number = $ARGV[0]; $AGI->exec("agi","agi://agi.server.com/script.agi?user=username&number=$number"); *********************************************************** Any assistance will be appreciated. Thanks. JR -- JR Richardson Engineering for the Masses
2006 Mar 12
2
Numerical Derivatives in R
Hi, Suppose I have an arbitrary function: arbfun<-function(x) {...} Is there a robust implementation of a numerical derivative routine in R which I can use to take it's derivative ? Something a bit more than simple division by delta of the difference of evaluating the function at x and x+delta... Perhaps there is a way to do this using D or deriv but I could not figure it out.
2006 Mar 21
1
VoiceMailMain(@context) Problem with Option 5(Advanced)
I had the same problem yesterday. I thought it might have been a realtime problem. Guess not. Bloody annoying too. > -----Original Message----- > From: JR Richardson [mailto:jr.richardson@cox.net] > Sent: Tuesday, March 21, 2006 2:52 PM > To: asterisk-users@lists.digium.com > Subject: [Asterisk-Users] VoiceMailMain(@context) Problem with Option > 5(Advanced) > > > Hi All, > > The situation: When I dial into VoiceMailMain(@context)...
2007 Jul 23
2
Voicemail .lock- files voicemail box not accessible
...roper access to voicemail. I can delete the .lock files and everything is normal. After searching around, I found some SIP lock file stuff but nothing specific to voicemail. Can someone point me in the right direction to resolve this? I'm runnning 1.2.9 on Debian Sarge. Thanks. JR -- JR Richardson Engineering for the Masses
2007 Dec 18
2
resync linksys SPA9XX config file from Asterisk
Hi All, Anyone know the sip header to send to a Linksys to resync it's config file? Thanks. JR -- JR Richardson Engineering for the Masses