search for: solution1

Displaying 5 results from an estimated 5 matches for "solution1".

Did you mean: solution
2013 May 15
1
Problem with convergence in optim
...g call: optim(param_ini,fun_errores2,Precio_mercado=Precio,anos_pagosE2=anos_pagos,control=list(maxit=10000,reltol=1e-16)) depending on the intial values I'm getting the same solution but once I get the convergence message=10 (no convergence) and for the others I get convergence message = 0 Solution1: $par beta1 beta2 beta3 lambda beta1 0.06537061 0.001474821 -0.0759236 0.5 $e2 [1] 74.84273 $conv [1] 0 $v [1] 74.84273 Solution2: $par beta1 beta2 beta3 lambda 1 0.06537061 0.001474822 -0.0759236 0.5 $e2 [1] 74.84273 $conv [1] 10 $v [1] 74.84273...
2008 Dec 18
2
Dial timeout with SIP - how to set timeout for INVITE ACK
I have a concern with Dial command, I want to enable a secondary route with a remote partner, if the first route fails then we use the second one : Solution1: it will try both (there will be 2 simultanious actives calls ringing) this is not clean when calling an endusers exten => _X.,1,Dial(SIP/${EXTEN}@remote-sip1,5 <mailto:SIP/${EXTEN}@remote-sip1,5> ) exten => _X.,1,Dial(SIP/${EXTEN}@remote-sip2,5 <mailto:SIP/${EXTEN}@remote-sip2,5...
2005 Aug 15
4
Re-sort list of vectors
Hi. Can anyone suggest a simple way to re-sort in R a list of vectors of the following form? input $"1" a b c 1 2 3 $"2" a b c 4 5 6 Output should be something like: "a" "1" 1 "2" 4 "b" "1" 2 "2" 5 "c" "1" 3 "2" 6 I've been futzing with mapply(), outer(), split(), rbind()
2011 Jul 21
0
There is no One True Solution
Folks, in many recent threads this pattern has been happening: OP: Any suggestions on how to do <something>? Responder 1: Look at <solution1>. Responder 2: Look at <solution2>. Responder 3: Look at <solution3>. Responder 4: It doesn't work for me / I don't like that / it's a stupid solution / etc <conversation degenerates and/or flamewar ensues> There's nothing wron...
2008 Dec 05
3
2 forms in one page,how to arrange the code and do it restful?
...rs in DB. Key works: document;author UI of document input page: left side is the document input form right side is the author search form Problem: How should i arrange the code to deal with it. I have 2 solutions, but i do not like them all! I think maybe i have some misunderstanding of restful! Solution1: let the document handles them all, put the current page under folder "views/documents", make the author search form a partial template and locate it under folder "views/documents" too, put the search_author method in DocumentsController.this really works,but it break the REST r...