search for: solution2

Displaying 6 results from an estimated 6 matches for "solution2".

Did you mean: solution
2013 May 15
1
Problem with convergence in optim
...39;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 My intuition tells me the correct solution is no convergence. Does anybody know why this might be happening. Thank you Felipe Parra [[alternative HTML ve...
2008 Dec 18
2
Dial timeout with SIP - how to set timeout for INVITE ACK
...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> ) Solution2: it will wait until 5 seconds of timeout (on answer) and then try the second alternative "n" exten => _X.,1,Dial(SIP/${EXTEN}@remote-sip1,5 <mailto:SIP/${EXTEN}@remote-sip1,5> ) exten => _X.,n,Dial(SIP/${EXTEN}@remote-sip2,5 <mailto:SIP/${EXTEN}@remote-sip2,5> ) th...
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 wrong with comparing / contrasting different sol...
2008 Dec 05
3
2 forms in one page,how to arrange the code and do it restful?
...ut the search_author method in DocumentsController.this really works,but it break the REST rules, how could i write the url for search_author method? I think the search_author method should be write in AuthorsController.If I do this, i can not get the search result @authors from AuthorsController. Solution2: It seem that the document belongs to the author. so i use the nested resources and add this line in route.rb map.resources :authors,:has_many=>:documents but this require that every operation on document should under a given author, the "action" attribute of document form should be li...
2011 Aug 04
4
Sweave - landscape figure
Dear R-users I am trying to understand how Sweave works by running some simple examples. In the example I am working with there is a chunk where the R-commands related to plotting a figure are placed. When running R CMD Sweave ? , pdflatex the output is a portrait figure. I wonder whether it would be possible to change the orientation to landscape (not in the latex file but in Rnw file). Many