Displaying 2 results from an estimated 2 matches for "chopoff".
2009 Jan 20
0
Stutter/chopoff first audio played
I've noticed on a few installations that the very first audio played after a
call in answered (eg: Greeting), the first part of the audio is
cutoff/stuttered.
Is this because Asterisk needs some RTP to create a sync for audio - and the
first 1 second is lost? Should one play 1 sec of silence first?
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2001 Nov 05
1
Why doesn't outer work?
...mean<- p.vec[10];
kidsize.var<- p.vec[11];
fac1<-sqrt(2*pi)*sqrt(kidsize.var);
fac2<-((y-kidsize.mean)^2)/(2*kidsize.var);
f<-fx(x)*nkids*exp(-fac2)/fac1;
return(f);
}
# Part (III)
################################################################
# THE KERNEL K(y,x)
# note the chopoff
Kyx<-function(y,x) {
xeval<-max(x,minsize); xeval<-min(xeval,maxsize);
yeval<-max(y,minsize); yeval<-min(yeval,maxsize);
#return(pxy(xeval,yeval)+fxy(xeval,yeval))
return(pxy(x,y)+fxy(x,y))
};
############## The 'big matrix' M of size n x n this uses outer a...