similar to: what does the "c" option in the zap phone number do

Displaying 20 results from an estimated 10000 matches similar to: "what does the "c" option in the zap phone number do"

2018 Mar 17
0
length of 'dimnames' [2] not equal to array extent- For Correlation Plot
That does clarify for me that you're missing a step: I didn't clearly follow your description at first. corrplot expects a correlation matrix, not your original data. You need to use cor() first. That's pretty clear in the documentation. See for instance the examples: data(mtcars) M <- cor(mtcars) corrplot(M) Sarah On Sat, Mar 17, 2018 at 12:00 PM Shivi Bhatia <shivipmp82 at
2005 Sep 23
2
ZAP ISDN losing digits
Hi all, I got into a strange problem here. I've got an asterisk box with bristuff-0.2.0-RC7k, and a HFC PCI ISDN card, running in NT mode. The ISDN card is connected to a S0 bus and to a Siemens ISDN PBX. Two phones are connected to the ISDN PBX and are successfully getting calls from the asterisk box. When dialling from one of the phones, the ZAP channel seems to be missing out on some of
2018 Mar 17
0
length of 'dimnames' [2] not equal to array extent- For Correlation Plot
I'm assuming you are using the corrplot package. If so, your data object does need to be a matrix, not a data frame. Since it's already a data frame, your line of code: as.matrix(as.data.frame(CR1)) doesn't need the as.data.frame function, but more importantly, you didn't assign the result to anything: as.matrix() does not work in place. CR1 <- as.matrix(CR1) Now try. If
2018 Mar 17
3
length of 'dimnames' [2] not equal to array extent- For Correlation Plot
Hi Sarah, Thank you for your help. I tried using CR1<-as.matrix(CR1) but gives error Error in corrplot(CR1, method = "circle") : The matrix is not in [-1, 1]!. I am using a corrplot library. Please find the reproducible example: dput(head(CR1,10)) structure(c(26L, 46L, 39L, 38L, 47L, 59L, 56L, 61L, 43L, 60L, 78L, 63L, 2L, 58L, 8L, 1L, 1L, 9L, 11L, 2L, 1037500L, 46747L, 346300L,
2007 Feb 25
2
Dialling ZAP channel from analogue
Hi, Asterisk Version : 1.2.15 Card : TDM11B (1 x FXO , 1 x FXS) I have internal dialling working okay SIP->ZAP (analogue phone) and ZAP (analogue phone) -> SIP. The problem comes when I try and make a outbound call. Here is my extensions.conf :- Code: [incoming] exten => s,1,GoToIfTime(17:00-09:00\mon-fri\*\*?outofhours|s,1) exten => s,2,GoToIfTime(*\sat-sun\*\*?outofhours|s,1)
2006 Dec 09
2
RDNIS question
Perhaps I've got the whole concept wrong, but here goes: Using 1.4, when someone from the outside dials my direct line (123456), I want it to call my extension at work (SIP/456), my extension in my home office (vpn connection to corporate lan, SIP/678) and my mobile (654321). So my dialplan is thus: exten => 123456,1,Dial(SIP/456&SIP/678&Zap/G3c/07803654321,30) exten =>
2018 Mar 17
2
length of 'dimnames' [2] not equal to array extent- For Correlation Plot
Created a new data set with 3 numeric variable to find correlation CR1<- mar%>% as_data_frame%>% select(AGE, OLD_CAR_PURCHASE_YRS, Total.Spend.With.AA) had to convert it to a data frame, code: as.matrix(as.data.frame(CR1)) Now i need to run a correlation plot for these 3 variables: corrplot(CR1, method = "circle") But i am getting this error: Error in
2003 Aug 25
2
call center - operators not using phone keys
Hi, I'm considering setting up a small call centre, but I don't want operators to need to use their phone keypads. Supposedly, all required call functions (dialling, answering, transfer, on hold, hang up, etc), should be done via their scripts (be is a web interface, curses or whatnot) and not using either a regular phone, nor a gnome-phone type interface. Also, all this will be happen
2004 May 28
1
Zap callgroup/pickupgroup question
I'm trying to set up asterisk so any phone connected to channel 1-16 of my Adit600 channel bank can pick up a call coming in on channel 24. I do not wish to ring any of the 16 channels on an incoming call -- this is strictly so I can pick up the line if I see it ringing and wish to answer at work. I have channel 24 in call group 3, and channels 1-16 in pickup groups 1 and 3. However
2018 May 16
0
Compile error while building LLDB
+ Jonas who hit the same bug recently. On Wed, May 16, 2018 at 8:01 AM, Eric Gorr via llvm-dev <llvm-dev at lists.llvm.org> wrote: > I was just trying to build lldb-6.0 from source (and had previously > successfully build llvm-6.0, clang-6.0, and lld-6.0 from source), but > received a compile error while using both just cmake and cmake+ninja > > Does this look familiar to
2004 Jan 23
0
Samba 3.0.0 compile errors
Apologies first! I am currently maintaining a very old SunOS 4.1.3_U1 server which is in a sensitive location an cannot be upgraded. It will be replaced soon, but in the meantime... I need to upgrade my Samba 2.0.6 to Samba 3.0.0, but receive the following compile errors: jasperl}source% make Using FLAGS = -g -O2 -I./popt -Iinclude -I/home/jasperl/julian/local/src/samba-3.0.0/source/include
2005 Aug 24
0
zapata.conf for a BT phone line with a TDM422P
Hi guys Forgive the newbie question but I am setting up my first * system :-) I live in the UK with two standard BT phone lines. The hardware used is a TDM400P with two FXO and two FXS daughter boards. Currently only one FXO and one FXS line is used during testing. Incoming calls work fine, as do the phones plugged into the system. However outbound calls do not work. The number is dialled,
2004 Jul 13
2
SIP simultaneous registry possible workaround (was Re: New Asterisk bounty: SIP simultaneous registry)
Andrew Kohlsmith wrote: >I wasn't talking about bandwidth but rather lengthy >Dial() commands... > >exten => s,1,Dial(SIP/someuser&SIP/someuser&SIP ...... > >kind of thing... seems awfully unwieldy. That's why you would stick the members into a global variable [globals] DIYCALLGROUP => SIP/111&SIP/112&SIP113 etc. then dial using
2018 May 16
2
Compile error while building LLDB
I was just trying to build lldb-6.0 from source (and had previously successfully build llvm-6.0, clang-6.0, and lld-6.0 from source), but received a compile error while using both just cmake and cmake+ninja Does this look familiar to anyone? In file included from llvm/lldb-6.0.0.src/source/API/SystemInitializerFull.cpp:89: In file included from
2005 Dec 31
1
Multiple ISP Links - Gateway Not Getting Restored
I have been successfully implementing load balancing gateways for multiple ISP links at various locations using Julian''s patches and as suggested in LARTC HowTo. At one location, one of the ISPs is providing connectivity through a PPOE DSL link which has to be dialled in everytime to connect. The gateway has been configured on a Fedora Core 3 based system and I have recompiled the
2018 May 26
0
Compile error while building LLDB
Sounds like we have an issue in the CodeView headers related to a duplicate symbol. While this doesn't entirely surprise me after seeing the error, I'm also not sure why this problem is only just happening now. Ultimately what's happening is we have this enumeration: enum class RegisterId : uint16_t { ... CR3, ... }; But your termios.h file also has a #define for CR3. I guess one
2004 Sep 17
1
Ackcall works for sip, not for zap
This is weird, and could find nothing on the wiki or * google search. Regardless of the ackcall setting in agent.conf, if I have agents logged in to a phone on a zap channel, when a call is made the agent's phone rings, and when they answer, they have to press "#" in order to hear the announcement. If the same agent is logged onto a sip channel, then the announcement is played as
2010 Jan 30
1
forward call back up same trunk to external cell phone problem
Hi If I have an incoming call coming down a SIP trunk to a particular internal SIP extension- I can answer the extension fine, all works well However, if I change extension.conf from dialling the internal extension to forward the call to an external cell phone (up the same trunk as the incoming leg of the call) I cannot get any audio and get the following error message on the console: [Jan 30
2007 Jun 27
1
Zap dialling issues
I'm having problems getting an Xorcom USB Bri 4 dialling out in Australia. I can receive calls into the system without an issue, but I can not for the life of me dial out of the system. Below are my configs, I'm hoping its something simple that I just can't see as I've been looking at it for to long. Can any one point me in the right direction. P.S. Yes it is meant to be in TE
2005 Feb 01
1
Zap channel occasionally misses dialing thefirst digit
I am have same issue with PRI and overlap dialling is not enabled. Stuart -----Original Message----- From: "Peter Svensson"<psvasterisk@psv.nu> Sent: 01/02/05 16:55:52 To: "Asterisk Users Mailing List - Non-Commercial Discussion"<asterisk-users@lists.digium.com> Subject: Re: [Asterisk-Users] Zap channel occasionally misses dialing thefirst digit