similar to: Weibull point process

Displaying 20 results from an estimated 500 matches similar to: "Weibull point process"

2010 Dec 14
3
Converting asterisk h264 recordings
Hello, We are setting up an asterisk system for voicemail with video possibilities. We are not using the voicemail app, but rather writing our own dialplan logic. The part of recording, and replaying, the voicemail works, and we receive both an h264 and an wav-file. What I now wonder is how to convert these into one file playable by a (standard) media player. I have not found any real good
2012 Nov 27
1
Performance after failover
Hey, all. I'm currently trying out GlusterFS 3.3. I've got two servers and four clients, all on separate boxes. I've got a Distributed-Replicated volume with 4 bricks, two from each server, and I'm using the FUSE client. I was trying out failover, currently testing for reads. I was reading a big file, using iftop to see which server was actually being read from. I put up an
2011 Oct 19
5
Running as non-root
Hello. I would like to run asterisk as an user other than root. I have seen some tutorials on the web, but I would like to know if there is some ?official? how-to for this. Is there? I looked at a thread on reviewboard regarding this (https://reviewboard.asterisk.org/r/654/). It was Paul Belangers work trying to make the installation process take care of this. But the conclusion seem to
2013 Mar 08
1
Debian Squeeze packages available for Gluster 3.4.0-alpha2
I've made packages for Debian Squeeze for Gluster 3.4.0-alpha2, they are available on http://torbjorn-dev.trollweb.net/gluster-3.4.0alpha2-debs/. They built and installed successfully, and have been running nicely for a couple of hours, but your mileage may vary. The Debian packaging is on http://torbjorn-dev.trollweb.net/gluster-3.4.0alpha2-debs/glusterfs-3.4.0-debian.tar.gz. I took the
2008 Jan 23
1
Realtime problem host='dynamic' in 1.2.26.1
Hello! We are using the 1.2 branch, and upgraded to 1.2.26.1. We ran into some problems when using realtime for peers. We connect the PBX to a sip peer at an ITSP, and when we try to dial the peer we get: Jan 23 09:02:07 VERBOSE[2236] logger.c: -- Executing Dial("SIP/dev02-08c36f28", "SIP/3246 at 989800-out||W") in new stack Jan 23 09:02:07 DEBUG[2236]
2008 Oct 28
2
Fitting weibull and exponential distributions to left censoring data
Dear R-users I have some datasets, all left-censoring, and I would like to fit distributions to (weibull,exponential, etc..). I read one solution using the function survreg in the survival package. i.e survreg(Surv(...)~1, dist="weibull") but it returns only the scale parameter. Does anyone know how to successfully fit the exponential, weibull etc... distributions to left-censoring
2007 May 27
1
Problem while working with SPSS data
Dear all R users, I got a strange problem while working with SPSS data : I wrote following : library(foreign) data.original = as.data.frame(read.spss(file="c:/Program Files/SPSS/Employee data.sav")) data = as.data.frame(cbind(data.original$MINORITY, data.original$EDUC, data.original$PREVEXP, data.original$JOBCAT, data.original$GENDER)) colnames(data) = c('MINORITY',
2008 Oct 22
2
Weibull parameter estimation
Dear R-users I would like to fit weibull parameters using "Method of moments" in order to provide the inital values of the parameter to de function 'fitdistr' . I don`t have much experience with maths and I don't know how to do it. Can anyone please put me in the rigth direction? Borja [[alternative HTML version deleted]]
2014 Feb 18
1
Dynamically setting from domain when calling friends
Hello I have a problem where I would like to be able to send an arbitrary SIP domain when sending a call to a registered friend. By default the from domain is set to the IP of the Asterisk server, but I would like to set it to something else. The case is that when a call from a foreign domain comes in to the Asterisk, it will connect it to the callee (but with the domain changed). When
2012 Mar 06
1
Scale parameter in Weibull distribution
Hi all, I'm trying to generate a Weibull distribution including four covariates in the model. Here is the code I used: T = rweibull(200, shape=1.3, scale=0.004*exp(-(-2.5*b1+2.5*b2+0.9*x1-1.3*x2)/1.3)) C = rweibull(n, shape=1.5, scale=0.008) #censoring time time = pmin(T,C) #observed time is min of censored and true event = time==T # set to 1 if event is observed
2003 Jul 28
1
Optimization failed in fitting mixture 3-parameter Weibull distri bution using fitdistr()
Dear All; I tried to use fitdistr() in the MASS library to fit a mixture distribution of the 3-parameter Weibull, but the optimization failed. Looking at the source code, it seems to indicate the error occurs at if (res$convergence > 0) stop("optimization failed"). The procedures I tested are as following: >w3den <- function(x, a,b,c)
2015 Jan 29
1
JITTERBUFFER function
> > 1. Do I need to activate jbenable in sip.conf? Or is it enough to call > > the JITTERBUFFER function? > > You only need to use the JITTERBUFFER function. > > The jbenable option will enable a jitter buffer on every channel > created for that peer (or, if global, for every peer in the system). > Depending on the version of Asterisk, it will also place the
2009 Jul 16
2
Weibull Prediction?
I am trying to generate predictions from a weibull survival curve but it seems that the predictions assume that the shape(scale for survfit) parameter is one(Exponential but with a strange rate estimate?). Here is an examle of the problem, the smaller the shape is the worse the discrepancy. ### Set Parameters scale<-10 shape<-.85 ### Find Mean scale*gamma(1 + 1/shape) ### Simulate Data
2012 Jan 29
1
r-help; weibull parameter estimate
Hello, If i write a function as below using log of weibull distribution i do not get the required results in estimating the parameters what do i do, please a/b * (t/b)^a-1 * exp(-t/b)^a n=500 x<-rweibull(n,2,2) z<-function(p) {(-n*log(p[1])+n*log(p[2])- (p[1]-1)*sum(log(x))+(p[1]-1)*log(p[2])+(sum(x/p[2])^(p[1]))  )} zz<-optim(c(0.5,0.5),z) zz [[alternative HTML version deleted]]
2015 Jan 29
2
JITTERBUFFER function
Hello! I am going to use the JITTERBUFFER function in a SIP (and local channels) only setup, but have some questions of how to use it: 1. Do I need to activate jbenable in sip.conf? Or is it enough to call the JITTERBUFFER function? 2. What is the preferred way to invoke this function? Say I have channel A which is not in need of buffering, while channel B do need it. If A
2006 Sep 21
1
survival function with a Weibull dist
Hi I am using R to fit a survival function to my data (with a weibull distribution). Data: Survival of individuals in relation to 4 treatments ('a','b','c','g') syntax: ---- > survreg(Surv(date2)~males2, dist='weibull') But I have some problems interpreting the outcome and getting the parameters for each curve. --------- Value Std.
2009 Dec 13
1
Non-linear Weibull model for aggregated parasite data
Hi, I am trying to fit a non-linear model for a parasite dataset. Initially, I tried log-transforming the data and conducting a 2-way ANCOVA, and found that the equal variance of populations and normality assumptions were violated. Gaba et al. (2005) suggests that the Weibull Distribution is best for highly aggregated parasite distributions, and performs better (lower type 1 and 2 error rates)
2001 Aug 28
2
Estimating Weibull Distribution Parameters - very basic question
Hello, is there a quick way of estimating Weibull parameters for some data points that are assumed to be Weibull-distributed? I guess I'm just too lazy to set up a Maximum-Likelihood estimation... ...but maybe there is a simpler way? Thanks for any hint (and yes, I've read help(Weibull) ;) Kaspar Pflugshaupt -- Kaspar Pflugshaupt Geobotanical Institute ETH Zurich, Switzerland
2011 Dec 01
3
AGI script that uses google's text to speech engine
Hello, I have written an AGI script for asterisk that uses google translate for text to speech synthesis. It supports a variety of different languages, local caching for the voice data and wideband audio. The voice in most languages is female and the quality of the synthesized speech is very high. More info about the script can be found here: http://zaf.github.com/asterisk-googletts/ the first
2006 Oct 16
1
Page hangs up after 5 seconds
Hi asterisk-users, We are using Asterisk 1.2.12.1, and are trying to use the Page application. It seems to work but after approx 4-5 seconds the call is hung up. The dialplan code look like this: exten => _*2XX,1,AGI(get-paging-devices.agi,${EXTEN:2}) exten => _*2XX,n,GotoIf($[ "${PAGING_DEVICES}" = "invalid" ]?i,1) exten => _*2XX,n,SIPAddHeader(Call-Info: