Displaying 20 results from an estimated 22 matches for "nogueira".
2009 Aug 21
5
how to install asterisk
hello friends,
i have to configures asterisk n my hardware details are
O.S - Ubuntu 8.04 Lts
Memory - 1 GB
Proccessor- core 2 duo
is any
one having a good link or how to related asterisk.
any help,support will
be higly appreciated
thx
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2013 May 29
0
Lista dos aprovados em vestibular Mata Grande
...RG CORDEIRO DE SOUZA SILVA, LUCAS FONTENELE SILVA DE CARVALHO, GERLANDE MARIA FERREIRA, RAFAELLA SAMPAIO DE ALENCAR, JO?O CARLOS MOREIRA DE CARVALHO, DENISE ARA?JO JUSTINO, MARIA NIVANEIDE DE ABREU LIMA, JOELMA C?NDIDO DA SILVA. TERESA RAQUEL DE MORAES ANDRADE, CARLA NAYANNE MOREIRA DE SOUZA, MAIRA NOGUEIRA ALVES, IAN VIEIRA LIMA AMORA DE SOUZA, ROBERTO ALMEIDA PIRES. Peri Mirim.
Mata Grande, ALDINEIDE BARBOSA DE ARA?JO, KAROLINE PONTES CAVALCANTE MANGUINHO, FABIO NOGUEIRA DA SILVA, N?DIA REGINA DOS P., JO?O CARLOS MOREIRA DE CARVALHO, C?CERA VALDECI DE BRITO, MARCO AURELIO BRANDAO SILVA, IRANI DE SO...
2008 Jan 26
5
double-click in RData file versus load( file )
hello all,
when I start up the R and I execute o follow code:
> ls()
character(0)
> x=123
> assign("test_x", x, envir = .GlobalEnv )
> ls()
[1] "test_x" "x"
> setwd('C:\\R\\etc')
> save.image('TEST.RData')
> q('no')
I have two different behaviours:
(a) - when I start up R again by "double click" in
2012 Jul 25
0
CFP: 13th IFIP/IEEE Symposium on Integrated Network and Service Management (IM 2013)
...chnical University of Athens
- Edmundo Madeira, UNICAMP
- Thomas Magedanz, Fraunhofer Institut FOKUS
- Clarissa Marquezan, Paluno, University of Duisburg-Essen
- Jean-Philippe Martin-Flatin, EPFL
- Deep Medhi, University of Missouri-Kansas City
- Michael Menth, University of Tuebingen
- Jose-Marcos Nogueira, Universidade Federal de Minas Gerais
- Michele Nogueira, Universidade Federal do Paran??
- Declan O'Sullivan, Trinity College Dublin
- Philippe Owezarski, LAAS-CNRS
- Gerard Parr, University of Ulster
- George Pavlou, University College London
- Aiko Pras, University of Twente
- Bruno Quoitin,...
2012 Jul 25
0
CFP: 13th IFIP/IEEE Symposium on Integrated Network and Service Management (IM 2013)
...chnical University of Athens
- Edmundo Madeira, UNICAMP
- Thomas Magedanz, Fraunhofer Institut FOKUS
- Clarissa Marquezan, Paluno, University of Duisburg-Essen
- Jean-Philippe Martin-Flatin, EPFL
- Deep Medhi, University of Missouri-Kansas City
- Michael Menth, University of Tuebingen
- Jose-Marcos Nogueira, Universidade Federal de Minas Gerais
- Michele Nogueira, Universidade Federal do Paran??
- Declan O'Sullivan, Trinity College Dublin
- Philippe Owezarski, LAAS-CNRS
- Gerard Parr, University of Ulster
- George Pavlou, University College London
- Aiko Pras, University of Twente
- Bruno Quoitin,...
2000 Sep 26
1
Printing graphics
Dear R Users
How can I print graphics during R sessions (under Linux, in a
non-post-script printer)? I have tried the command -dev.print(device=X11)-
without success.
Thanks for your attention
Eduardo
_____________________________
Eduardo Arantes Nogueira, MD, PhD
Discipline of Cardiology
University of Campinas Medical School
Campinas, Sao Paulo, Brazil
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html
Send "info", "help", o...
2008 Dec 08
1
example of gladeXML - RGtk2
hello all,
where I find a example or tutorial of RGtk2 package?
I would like to know about the gladeXML functions in R.
thanks in advance
Cleber Borges
2010 Nov 06
1
sip and iax2 audio volume gain
I have an asterisk box using a SIP provider and IAX2 softphones clients.
Audio is low and I need to apply some gain on it. How can I configure such
gains - in/out on sip and iax2 channels?
Thanks,
Valter
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20101106/85417a17/attachment.htm
2012 Nov 29
1
libary survival
Hello,I would like to know if there is residue analysis after the Cox model and make the adjustment for my random cluster?
[[alternative HTML version deleted]]
2014 Jul 20
1
Checking for human answer
We redirect calls to another pbx - which are not under our control.
So, we need to distinguish when an operator answer from the time the call
stays on queue.
To do so, we use dial cmd with M option. M calls a macro that repeats a
digit (saydigit) until someone dial it.
When operator dials the correct digit we finish the macro making it to be
bridged (caller and called).
It almost works
2010 Oct 21
1
How to kill AMI ORIGINATE on-the-fly
My application fires several calls thru AMI ORIGINATE command.
For example if I have 3 operators I do 3 ORIGINATEs.
My trouble is when one operator quit for some reason, I should kill the
corresponding ORIGINATE.
Of course, I could let the call ring and hangup after the customer pick-up.
But this is not the case, I do have to kill the corresponding ORIGINATE.
I could execute a soft hangup,
2008 May 30
1
Get all X iterations in optim output when controls(trace=6)
Hi,
I would like to get all X iterations in optim output in matrix form.
I know about the follow approach:
sink("reportOptim")
optim( ......., control=list( trace=6,..........) )
sink()
all_iterOptim <- readLines("reportOptim")
unlink("reportOptim")
all_iterOptim <- all_iterOptim[ grep( '^X', all_iterOptim ) ]
### TODO: the rest !!! :-)
But it is very
2008 Jun 24
1
Hessian in box-constraint problem - concern OPTIM function
Hello all useRs,
I am using the OPTIM function with particular interest in the method
L-BFGS-B,
because it is a box-constraint method.
I have interest in the errors estimates too.
I make:
s.e. <- sqrt( diag( solve( optim(...,method='L-BFGS-B',
hessian=TRUE)$hessian )))
but in help say:
"Note that this is the Hessian of the unconstrained problem even if the
box constraints
2008 Jun 18
1
Error in bugs.run -- R2WinBUGS
Hi,
I tried to use MethComp library and this library make use of the WinBUGS
by R2WinBuGUS,
but I get the follow error in bugs.run:
*Error in bugs.run(n.burnin, bugs.directory, WINE = WINE, useWINE =
useWINE, : *
Look at the log file and
try again with 'debug=TRUE' to figure out what went wrong within Bugs.
Anyone can help-me, please?
Thanks
Cleber
library( MethComp )
library(
2015 Jan 07
0
Adding an Event on chan_sip.c (asterisk 1.8.22)
In some situations I got the following message on asterisk console:
* Autodestruct on dialog '857128833 at 192.168.2.129
<857128833 at 192.168.2.129>' with owner SIP/1015-00000002 in place (Method:
BYE). Rescheduling destruction for 10000 ms*
I would like to raise a manager event, to take some action when it is
happening.
To do so, I believed that was just a matter of adding an
2015 May 25
0
AMI Originate not execution "failed" extension on Asterisk 13.2
We relay on 'failed' extensions after AMI ORIGINATE command.
When moving from Asterisk 1.8.22 to Asterisk 13.2, it has stopped to work.
I belive that it is due to a change in pbx.c => ast_pbx_outgoing_exten.
Thanks,
Valter
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2009 Jun 29
0
Transfer dropping calls
When doing transfers the call drops as follows:
1. I receive a call (internal or not)
2. I dial *2, wait for transfer sound plus dialtone
3. I dial for destinantion person, who pickups the phone
4. We talk to each other
5. I hangup my phone and the call drops
if I dial * when talking with destination person a got the original call
back
The same occurs with blind transfers
We are using Asterisk
2012 Oct 05
1
Bayesian inference distribution parameters
Dear all,
I'm having a hard time trying to estimate in a bayesian way the parameters
alpha and beta for a beta distributed set of data (frequency of
occurrence). Do you have any suggestions or tutorials on how to estimate
this?
Best regards,
JC
[[alternative HTML version deleted]]
2014 Jul 26
0
Hangup check during long running macro called by M option on Dial
I have built a dialplan which dial to someone with option M.
Dial (SIP/1000,,M(MYMACRO))
Both parties are SIP phones.
MYMACRO expects person on SIP/1000 dial 5 (using read) then exits - and
doing so it bridges my phone (SIP/2000) with SIP/1000.
If SIP/1000 hangs up before dial 5 - ok the call ends.
if SIP/2000 hangs up before SIP/1000 dial 5 - the macro is unaware and
keeps waiting SIP/1000
2014 Aug 26
0
cmd Dial with U option
In my dialplan, when I dial 99 it rings SIP/2000
When SIP/2000 answers, it hears 9 every 5 seconds until someone dials 9,
what makes 2 legs been bridged.
My problem is: If I hangup, SIP/2000 continues to hears 9 until someone
dials 9 - it not stops
If SIP/2000 hangup - then the call is ended - what is OK
Is there some workaround? I was thinking in use G option - however I don't
figured out