similar to: regression with restrictions - optimization problem

Displaying 20 results from an estimated 500 matches similar to: "regression with restrictions - optimization problem"

2009 Jul 10
3
strange strsplit gsub problem 0 is this a bug or a string length limitation?
I was working with the rmetrics portfolioBacktesting function and dug into the code to try to find why my formula with 113 items, i.e. A1 thru A113, was being truncated and I only get 85 items, not 113. Is it due to a string length limitation in R or is it a bug in the strsplit or gsub functions, or in my string? I'd very much appreciate any suggestions ============Input script:
2003 Aug 07
1
MWI bug ?
Hi Lee, You need to specify the VM context that you are using.. so using your examples.. extensions.conf entry.. exten => 1000,1,Dial(SIP/1000,20) exten => 1000,2,Voicemail2(u1000) exten => 1000,102,Voicemail2(b1000) exten => 1000,103,Hangup should be.. exten => 1000,1,Dial(SIP/1000,20) exten => 1000,2,Voicemail2(u1000@sip) exten => 1000,102,Voicemail2(b1000@sip) exten
2020 Jun 06
3
Change in package.skeleton behavior from R 3.6.3 to R 4.0.0 ?
The Rcpp package and some related packages such as RcppArmadillo make use of (local) wrappers around the utils::package.skeleton() function for creating (basic yet functional) packages using Rcpp or RcppArmadillo. RStudio also exposes this under the graphical menu as a nice way to construct a package. But it seems that something changed quite recently in R. I looked into this a little yesterday
2007 Jan 31
3
Queue Status
Hello all, I think Lee has given me a head start, but I'm still running in a circle (at least i'm in the lead). The problem is with my queues. The phones go to their own voicemail after 5 rings. That's about the same time I allow the phone to ring before trying another phone in the queue. Is there a way to tell asterisk....? If this call is coming from a queue, do not follow a
2004 Dec 19
1
Make asterisk launch script after completing call.
OK. I now have call recording working for both incoming and outgoing calls. Now I want to make those wavs into mp3. I could launch a script from cron that checks for new wavs and converts them. But that wouldn't be so elegant. Launching it from * on hangup would be nicer. How is it done? [outgoing] exten => _0.,1,SetVar(CALLFILENAME=${EXTEN:1}-${TIMESTAMP}) exten =>
2007 Oct 18
1
Ring Groups
Here's what I'm looking to do.... exten => 10,1,Dial(SIP/1000&SIP/1001,15,wW) exten => 10,2,Voicemail(u1000) This should ring both phones and they should keep ringing for the alloted time before moving on. However, it appears that if one of the phones is Busy, it returns with a busy and moves on without really ringing the second phone. Short of checking if the channels are
2004 Jun 27
1
Why? oh why can't I dial out?
I have been struggling with my Asterisk setup for 3 days now and I think I have done well...apart from the small detail that I cannot dial out on my phone (PSTN) line. My setup is: Suse Linux 9.0 1 fxo card connected to a BT(UK) line 1 Cisco ATA186 sip v3.0 with two analogue phones attached to it Asterix CVS-HEAD-05/30/04-06:56:31 with the UK Userid patch applied. Asterisk loads without any
2004 Sep 01
1
X100P + Call-Waiting - Flash how-to.
Hi all I'm pretty sure someone must have done this before but I couldnt find any trace of it on the web so I thought I would drop a note about how I ended up doing it. I have also posted this info on voip-info. Warning : This is not very elegant and I'm currently trying to write a patch in order to make it better but so far, this the only way I've gotten this to work. Scenario : I
2005 Mar 18
1
Broadvoice hangs-up / disconnects after about 30 deconds
I have just installed * from the latest CVS and I can make calls via X-Lite to outside numbers but for only 30 to 35 Seconds at a time then Broadvoice will hang up on me but X-Lite will not know it. Once I hang up X-Lite then I will get the following error message: Spawn extension (default, Number-I-Dialed, 1) exited non-zero on 'SIP/200-6a22' -- Got SIP response 404 "Not Found"
2006 Jan 21
1
Asterisk 1.2.2 - Double Quote on CallerID Causing SIP Problem (7940)
Hi, I just upgraded by 1.0.x home server to 1.2.2. Overall the upgrade went fine, but a strange problem has cropped up with the CALLERID name value of incoming calls from the X101P card. When an incoming call is presented (via Vonage ATA), the calledid value getting double quotes up from: -- Executing NoOp("Zap/1-1", """WIRELESS CALLE" <1404xxxxxxx>") in
2004 Jul 12
0
Transfers (sip or asterisk "#' base) broken in certain scenario
I've got an interesting scenario where transfers while getting an invite seem to break. Here is the scenario: You have a receptionist who has a 6 line phone (in this case, a polycom ip600 - also tested with a Cisco 7960) the receptionist has all six lines available for use (in the case of the cisco I tried registering all lines as one number as well as registering multiple lines and
2004 Apr 19
0
strange problem with SIP/voicemail
I'm having a very strange problem I've been fighting with all day. It's 2:30am, and I'm stuck. I think the problem may lie with one of my SIP providers, but I'm not sure. I have two ways to call into my test Grandstream. I can call a PSTN 360 area code number that will forward to my FWD number, which in turn is registered with my * box on extension 2030. If I call the 360
2003 Jul 24
2
Voicemail() problems - Long pause after incoming message recording ended.
I'm having the following problem: I call into my Asterisk box (RedHat Linux 9.0, 1 Digium X100P card) to access voicemail. After dialing the appropriate extension I get voicemail, am presented with the user's unavailable message, and can leave a message normally. The problem comes when I press "#" to end the recording, at which point I am told "Your message has been
2003 Apr 09
7
Caller press "0" in Voicemail
I would like to add the ability for our users to be able to press "0" whenever reaching someone's voicemail box to re-reroute them to the auto-attendant. Here's a sample extensions.conf: [incoming] include => ciscophones exten => s,1,Wait,1 exten => s,2,Answer exten => s,3,DigitTimeout,5 exten => s,4,ResponseTimeout,15 exten => s,5,BackGround(auto-greeting)
2020 Jun 06
0
Change in package.skeleton behavior from R 3.6.3 to R 4.0.0 ?
On 06/06/2020 3:06 p.m., Dirk Eddelbuettel wrote: > > The Rcpp package and some related packages such as RcppArmadillo make use of > (local) wrappers around the utils::package.skeleton() function for creating > (basic yet functional) packages using Rcpp or RcppArmadillo. RStudio also > exposes this under the graphical menu as a nice way to construct a package. > > But it
2003 Oct 11
1
SIP / IAX over satellite
Hi all, ------ I tried to use * over satellite, but all my effort did not succeed. The Asterisk is behind the VSAT and is resposibel for alle the SIP clients in a field location. The clients are notebooks and PDA's running SJPhoen for Windows and PocketPC. Unfortunately I could not find any Linux Client wich worked satisfying. SJ LAbs promised a Linux Version at the end of August but they
2004 Aug 17
4
Hunt Groups
I have a question about how Asterisk Parses the Dial Plan. To create a hunt-group which would be the appropriate dial plan: [CompanyABC] exten => 7228888,1,Dial(SIP/8017228888,60,r) exten => 7228888,102,Dial(SIP/8014361234,60,r) exten => 7228888,103,Dial(SIP/8014362345,60,r) exten => 7228888,104,Dial(SIP/8014363456,60,r) exten => 7228888,105,Dial(SIP/8014364567,60,r) exten
2003 Dec 22
1
Authentication
Dear all, I have a question regarding the configuration of *. I have 3 port FXS, and 2 port FXO. I have 4 users that use analog phone connected to FXS (I have 3 phones). I need to limit the user's capability (user A can call International, user B can call long distance, etc). I want to implement the password say to call , he/she needs to puch 9(for outgoing call)2-4 digits password,then
2008 Jan 18
1
gboxplot (JMP Diamond plot in R?)
I am looking to replicate the functionality of the JMP diamond plot in R. I have found the following enhancement and no other references(see below). I have tried to contact the author via email and I have had no luck. Does any know if this functionality exists in R? If it does not does anyone know how to contact the author of the enhancement request? "Hi, I experimented with a set of S
2003 Oct 14
3
H.323 - SIP gateway
Hi all! Please I need someone that have already done an H.323 - SIP gateway to help me with some problems. I can stablish calls from a SIP telephone to a H.323, but I can't do vice versa... (problems with port 1719- when the gatekeeper tries to contact with asterisk at this port, it is unrecheable...). Please someone can help me? Regards, Mireia