similar to: Send DTMF after call bridge

Displaying 20 results from an estimated 300 matches similar to: "Send DTMF after call bridge"

2020 Sep 13
2
Cambiar datos de un DF
Hola: Si codificas "col1" como un factor, lo puedes cambiar todo de una vez renombrando los niveles correspondientes: > df$col1<-as.factor(df$col1) > df$col1  [1] uno   dos   3     4     cinco 6     siete 8     9     diez Levels: 3 4 6 8 9 cinco diez dos siete uno > levels(df$col1)[1:5] <-
2009 Jun 30
2
difference between "names", "colnames" and "dimnames"
Hi all... I built a matrix binding vectors with rbind, and have something like this: [,1] [,2] [,3] [,4] [,5] [,6] [,7] [,8] CLS 3.877328 4.087636 4.72089 4.038361 3.402942 2.786285 2.671222 3.276419 ORD NaN NaN NaN NaN 5.770780 5.901113 11.888054 7.934823 FAM NaN NaN NaN NaN NaN 3.699455 4.551196 2.885390 GEN
2020 Aug 24
3
(sin asunto)
Creo que el problema se podría simplificar y aún obtener un resultado aceptable si simplemente haces un ajuste lineal en un entorno del punto. Como ya tienes los valores de los puntos de cada curva como dices Carlos, creo que con esa información podrías identificar un entorno adecuado en el cual ajustar linealmente. Cuéntanos como te va, Saludos !! Eric. On 24-08-20 12:52, Carlos Ortega
2008 May 11
8
debugging / dll file / wine / company of heroes
hi. i try to get company of heroes 2.301 workin on ubuntu 8.04. i get this error: > > user666 at user666-desktop:~$ wine "e:\Gamez\Company Of Heroes\RelicCOH.exe"fixme:heap:HeapSetInformation 0x16a0000 0 0xfffb9c 4 > fixme:heap:HeapSetInformation 0x19d0000 0 0xfffb98 4 > fixme:heap:HeapSetInformation 0x1ae0000 0 0xfffb98 4 > fixme:heap:HeapSetInformation 0x1bf0000 0
2013 Sep 27
2
Ayuda erreficando un código
Hola a todos, Después de presentar ayer en las jornadas de usuarios de R de Madrid el problema de las ocho reinas y su solución con R, unas de las críticas que recibí es que el código de la solución no iba mucho con el estilo de R. En concreto, la función que recibe una lista con la posición de las reinas (ejemplo (1,5,2,3,4,6,8,7)) y calcula si se atacan (comparten la misma diagonal). El código
2008 May 15
2
mixed effects models with nested factors
Hi everybody, I am trying to fit a model with the lmer function for mixed effects. I have an experimental design consisting of 5 field plots. Each plot is divided in 12 subplots where the influence of three factors on the growing of tree seedlings is tested: (1) seed (1 = presence; 0 = absence); (2) seedling species (oak holm vs. pine); (3) treatment (three different treatments). In each of
2003 Jun 18
2
RH8.0 kernel lockup with PXELinux on x440
Howdy. We've got a couple IBM x440 (Summit) 8-way Xeon systems that I've been trying to get netbooting for a while. Since we use Kickstart and SystemImager to load OSes on our systems, a system has to be able to netboot before it can be made available to folks for project use. System BIOS is the current one, v1.08. They're booting from a planar BroadCom Tigon3 adapter. BIOS
2016 Jul 05
3
ayuda frecuencia asistencia clase
Estimados usurios-R: Tengo una lista de alumnos. Hay alguna forma de sacar una tabla de frecuencias por la asistencia a clases mensual. Es decir cuantos días concurrió cada alumno en el mes. Supongamos que la lista está conformada por ocho alumnos, el curso duró 4 días y quiero saber cuantos días concurrió cada uno al curso poniendolo en la columna mes. Quisiera obtener un cuadro así: Alumnos
2010 Jul 08
3
SC2 Beta
Trying too run the SC2 Beta patch 16 which came online last night (EST). It worked perfectly before this new version (using the HOWTO @ http://appdb.winehq.org/objectManager.php?sClass=version&iId=19376). I have un-installed and deleted my copy of SC2 prior to setting it up and generating this log. At the end of the log all I have of SC2 running is a black screen and a movable cursor. Code:
2010 Jun 14
5
cooked mode sessions
Picking up on a couple really old threads (e.g. http://osdir.com/ml/ietf.secsh/2001-09/msg00003.html ) I've finally gotten around to this. The EXTPROC support on Linux is missing, but you can find kernel patches for that here http://lkml.org/lkml/2010/6/11/403 I've also fixed up the netkit telnet / telnetd code to work with EXTPROC / LINEMODE on Linux, those patches are here
2015 Dec 09
4
Problemas de instalación
Buenos días, He cambiado la versión de R como siempre a través de: install.packages("installr") library(installr) updateR() En esta ocasión trabajando bajo windows 10. La versión 3.2.2 me ofrece menos mirror, pero mi principal problema es que no soy capaz de trabajar con Rcommander (ahora lo hago con RStudio) me da la siguiente salida: > utils:::menuInstallPkgs() --- Please select a
2001 Mar 07
1
lreadline
I compiled R-1.2.2 on my SuSE 7.1, kernel 2.4.2-2 machine with libreadline.4.1 and although I can use vi commands to scroll on the shell (bash) command line, I CANNOT do it in R. Here's the relevant parts of ./configure (and make): anovo at friedman R-1.2.2 > ./configure | grep readline checking for rl_callback_read_char in -lreadline... yes checking for readline/history.h... yes
1999 Oct 19
2
Summary bug?
Hi, It seems that there's a bug in summary, in the max. output... but max() alone works fine. > hw04.dframe$area ... [41] 1790 1380 1296 2745 798 2306 438649 1481 1559 2450 ... > summary(hw04.dframe) area Min. : 798 1st Qu.: 1349 Median : 1690 Mean : 6962 3rd Qu.: 2306 Max. :438600 ### should read 438649 or, to the point,
2010 May 08
3
Count cases in a list
Hi everybody, I would like to count how many times names in list L, nombreL, apear in list C, nombreC. Can I improve the next program? cuenta <- 0 topL <- length(nombreL) topC <- length(nombreC) for (i in 1:topL) { for (j in 1:topC) { k <- grep(noquote(nombreL[i]),nombreC[j])
2009 Jan 14
6
Solaris 10 with xen 3.2 or previous
Hi, Was anyone able to run Solaris 10 10/08 as guest under a HVM domU Debian Etch (xen 3.0.3-1) or current Debian Lenny (xen 3.2-1)? In my case Solaris installation stops after boot kernel ; I can''t see anyhing after grub screen. I know that it is possible using Xen 3.3 (see [1]) but I don''t know if it possible with a previous Xen version Thanks, Álvaro [1]
2007 Jul 17
7
Asterisk 1.4, Unicall and Nextel...
I have a customer that is complaining that any call coming in from Nextel gives a fast busy. We are running Asterisk 1.4.7.1 with Zaptel 1.4.3 and all the MFC/R2 patches and libraries. All other calls go out and come in, just Nextel seems to have this problem. The phone company technician connected a PBX emulator on the line and that one could receive the calls from Nextel. The E1 is provided
2008 Jul 24
2
[LLVMdev] Erlang
Hello, How would you implement an Erlang feature such as the ultra-light processes? Is llvm prepared for similar situations? I would appreciate some insight on this. Thank you very much, .alvaro.castro.castilla.
2007 Feb 04
5
Unicall/R2 for Asterisk 1.4 Available for TESTING
Im glad to let you know that finally I invested some time to make work Unicall in Asterisk 1.4, I must say not much testing could be done since I have no hardware available ( cards, servers ), however a friend was able to test it with a couple of calls with success, I need you to test this and report some feedback. The sources are available in: http://moy.ivsol.net/unicall/soft-switch/r1b1/
2023 Mar 20
3
[PATCH 0/2] vdpa/snet: support [s/g]et_vq_state and suspend
Add more vDPA callbacks. [s/g]et_vq_state is added in patch 1, including a new control mechanism to read data from the DPU. suspend is added in patch 2. Alvaro Karsz (2): vdpa/snet: support getting and setting VQ state vdpa/snet: support the suspend vDPA callback drivers/vdpa/solidrun/Makefile | 1 + drivers/vdpa/solidrun/snet_ctrl.c | 324 +++++++++++++++++++++++++++++
2023 Apr 02
2
[PATCH resend 0/2] vdpa/snet: support [s/g]et_vq_state and suspend
Add more vDPA callbacks. [s/g]et_vq_state is added in patch 1, including a new control mechanism to read data from the DPU. suspend is added in patch 2. Alvaro Karsz (2): vdpa/snet: support getting and setting VQ state vdpa/snet: support the suspend vDPA callback drivers/vdpa/solidrun/Makefile | 1 + drivers/vdpa/solidrun/snet_ctrl.c | 324 +++++++++++++++++++++++++++++