similar to: Precomputing the remaining floating point operations.

Displaying 12 results from an estimated 12 matches similar to: "Precomputing the remaining floating point operations."

2005 Sep 27
1
Precomputing the remaining floating pointoperations.
Firstly, running for more channels will not break my hack. All that's needed is to call RECOPLAY_MARK with different identifiers (say nb, wb or uwb) before doing the appropriate initialization. Secondly, my attempts to do the Gaussian in fixed point went like this : Define a new constant lag_factor_gauss that is manually set equal to exp(sqr(2*M_PI*lag_factor)/-2) by whoever changes the
2009 Jun 30
1
Setting CDR(userfield) from Macro called from feature doesn't work with cdr_mysql
cdr_mysql doesn't set the userfield when it's set inside a macro called from a feature (1.4.25, addons 1.4.8). I have a feature code: autorecord => *1,self,Macro,apprecord The apprecord macro looks like: [macro-apprecord] exten => s,1,Playback(beep) exten =>
2010 Aug 12
1
Recording the conversation with MixMonitor() ends when the call is transfered
Hello. I notice that when a call that is recorded with MixMonitor is transfered to another co-worker, the recording ends. exten => 409,n,Macro(SDstartrecording,external,${DID}) the incoming call then goes to a queue... [macro-startrecording] ; ARG1 = incoming DID or CALLERID(name) ; ARG2 = outgoing dialnumber ... exten => s,n,MixMonitor(/var/ftp/${NR}/${recordfile},b,chown -R
2009 Feb 13
2
Continue processing AGI script after hangup
All; I wrote a PERL AGI script that prompts a caller to leave a message using print "RECORD FILE $recordfile wav # 60000 BEEP s=3\n"; When the caller is done, they need to press the # key. The message is then delivered. However, the message is not delivered if the caller simply hangs up when finished. If the user hangs up, the script ends right then. How do I keep on processing the
2006 Feb 24
2
Missing 31 DTMF tones over ZAP
Hello, I'm posting this to the list in case others run into the same issue. I've recently been connecting * to a legacy Avaya InDEX switch over E1 ISDN PRI here in the UK. Everything was working OK, except that DTMF digits were not being recognised by * when sent by the Avaya switch to the * system. Instead, the background noise of the call centre would be silenced while
2009 Aug 20
6
Cannot play soundfile, doesnt find it or wrong format? Weird, worked yesterday! :-)
I'm trying to play a wav-file on a channel. This is what I see in the asterisk debug console AGI Rx << STREAM FILE "test.wav" "12345" [Aug 20 16:10:19] WARNING[25219]: file.c:602 ast_openstream_full: File test.wav does not exist in any format So it doesn't find the file, or it's in a wrong format? I can listen to it with windows media player... it's a
2007 May 23
3
TE205P, E1, Panasonic PBX and hang-up issues
Hey folks, I have a Digium TE205P working as a man in the middle: PRI line -------- Asterisk/TE205P -------- PBX The PBX is a Panasonic KX - TVP 100. Everything is working great except for one little issue. Asterisk isn't hanging up the PRI B channel when the PBX channel is hung up. I don't want to overload you with information but please ask if more is needed. I suspect I'm
2007 Apr 17
2
Voicemail files permission
I'm using asterisk 1.2.14 When asterisk stores voicemail messages in /var/spool/asterisk/voicemail/default/EXTENSION/INBOX files are created with: -rwx------ 1 asterisk web-aster 6690 Apr 17 16:08 msg0002.WAV -rwx------ 1 asterisk web-aster 6732 Apr 17 16:08 msg0002.gsm -rw------- 1 asterisk web-aster 274 Apr 17 16:08 msg0002.txt -rwx------ 1 asterisk web-aster 65324 Apr 17 16:08
2003 Jul 23
5
Asterisk as a stand alone voice mail server
I'm sure asterisk would make a great stand alone voice mail server. Basically I want to get rid of our voice mail system and replace it with *, but the problem is we use a cisco cluster with skinny clients. So I was thinking the way to contact a * server, would be through our 3640. But so far any attempt has failed. I am wondering if anyone has done something similar. Just want to verify the
2005 Oct 18
0
At last : Speex without floating point
I've implemented my RECOPLAY idea and also changed a few small things that used floating point in the current version (1.1.10). In the process I discovered a few bugs (see the diff). Then I #ifdef'ed out everything that is still requires floating point including : Preprocessing, Echo cancellation, Stereo, VBR, vocoder modes, wideband and ultrawideband modes that do not use Innovation
2008 May 30
0
scoping problem when calling lm(precomputed formula, weights) (PR#11543)
On 5/30/2008 11:40 AM, rocket at google.com wrote: > I've run into a scoping problem in R. No, in your use of it. > I'm calling a function that > * creates a formula ... incorrectly. > * calculates a weight vector > * calls lm with that formula and weights > This fails. > > Here's a simplified reproduce example: > # f works, g doesn't, h is
2008 May 30
2
scoping problem when calling lm(precomputed formula, weights) from function (PR#11540)
I've run into a scoping problem in R. I'm calling a function that * creates a formula * calculates a weight vector * calls lm with that formula and weights This fails. Here's a simplified reproduce example: # f works, g doesn't, h is a workaround rm(w) data <- data.frame(y=runif(20), x=runif(20), z=runif(20)) f <- function(k){ w <- data$z^k coef(lm(y~x, data