Displaying 20 results from an estimated 700 matches similar to: "Failed to play audio data file!"
2010 Feb 22
2
change email subscription
Dear R team,
As this is a university email address with very small inbox limit, can I
please change my R email subscription to another email address instead of
this one? My new email address is wendy2.qiao@gmail.com. I have change my
email in my profile, but seems that does not change my subscription.
Thank you.
Wendy
[[alternative HTML version deleted]]
2013 Jul 24
2
[LLVMdev] Program compiled with Clang -pg and -O crashes with SEGFAULT
Hi,
I am trying to compile a simple program with Clang 3.3 on Linux and used -pg and -O2 option. The program would crash with segfault. Interestingly if I compile it with -pg option only it works. Do you have any idea why it crashes? And any workaround?
$ cat myprog.c
int main() {
return 0;
}
$ clang -v -pg -O2 myprog.c
clang version 3.3 (tags/RELEASE_33/final)
Target:
2011 Apr 10
3
count number of TRUEs in each row
Hi all,
I have a huge matrix of TRUE/FALSE table like following, and I want to count
the number of TRUEs in each row. Instead of looping through each row and do
length(Z[Z==TRUE]), I am wondering if there is an easier way of doing this.
[,1] [,2] [,3]
[1,]TRUE FALSE FALSE
[2,]FALSE TRUE TRUE
Thank you in advance.
Wendy
--
View this message in context:
2013 Jul 24
0
[LLVMdev] Program compiled with Clang -pg and -O crashes with SEGFAULT
Hi Qiao,
On 24/07/13 08:23, Qiao Yang wrote:
> Hi,
>
> I am trying to compile a simple program with Clang 3.3 on Linux and used -pg and -O2 option. The program would crash with segfault. Interestingly if I compile it with -pg option only it works. Do you have any idea why it crashes? And any workaround?
>
> $ cat myprog.c
> int main() {
> return 0;
> }
>
> $
2011 Mar 24
2
[LLVMdev] Is LLVM appropriate for implementing a shell interpreter?
Hi devs,
We are implementing a library that interprets shell scripts so that
other programs could efficiently talk to bash. We'd like to hear your
advice on whether LLVM is appropriate for us. Here are our considerations:
In most cases our library will interpret each script just once. Our
current approach is using a manual implementation based on ANTLR and
C++, so actually we are executing
2011 Mar 24
0
[LLVMdev] Is LLVM appropriate for implementing a shell interpreter?
Mu Qiao wrote:
> Hi devs,
>
> We are implementing a library that interprets shell scripts so that
> other programs could efficiently talk to bash. We'd like to hear your
> advice on whether LLVM is appropriate for us. Here are our considerations:
>
> In most cases our library will interpret each script just once. Our
> current approach is using a manual
2012 Mar 15
1
How to change the number of axis?
Hi,
I use R to plot a graph with 20000 frames. Because the limit of pixel
or others, the screen fail to show the graph. So I have to draw a
point every 10 frames. So the total of x axis becomes 2000.
So when imaging the picture, I still hope that the total of x-axis is
20000. I need to find a way to modify the number of axis.
How could I do this?
Thanks!
2003 May 28
0
calls between SIP and H.323 clients
Hello all,
It's me again.
I would like play with calls between a H.323 client and a SIP client
through * inside my LAN.
For that,
on host 192.168.1.20, I use GnomeMeeting (GM20) and Asterisk;
on host 192.168.1.25, I use SJphone (SJ25) as SIP client on Windows and I
register into * with a username, no password. The 3 files oh323.conf,
sip.conf, extensions.conf are in attachment.
In the same
2010 Feb 21
4
replicate matrix
Hi all,
I have a matrix, for example
[,1] [,2]
[1,] 1 3
[2,] 4 6
I want to replicate the matrix twice and add an extra column at the end,
which is
[,1] [,2] [,3] [,4] [,5] [,6] [,7]
[1,] 1 3 1 3 1 3 2
[2,] 4 6 4 6 4 6 5
I found 'rep' only works for vector. Does anyone know how to replicate a
matrix, and append the matrix?
2004 Sep 18
1
13 sec. delay what is causing it?
I've setup SPA-3000 and when the calls come through my phone is rining
almost instantly but the [demo] doesn't answer till after about 13
seconds.
So I have about 13 seconds delay and I don't know what setting is
causing it; here is a part of my settings from extension.conf.
[from_pstn]
exten => 1000,1,Goto(demo,s,1)
[demo]
exten => s,1,Answer ; Answer the
2003 Aug 12
4
X100P Ringing/Answering
It appears that my X100P card is only answering after two rings. Ideally,
I'd like it to answer on the first ring. Here is the incoming section of my
extensions.conf file:
[incoming]
exten => s,1,Answer
exten => s,2,BackGround(demo-congrats) ; Play a congratulatory message
exten => 1234,1,Goto(jgunther,1234,1)
exten => 4321,1,Goto(mgunther,4321,1)
exten =>
2007 Oct 27
1
problems in cross validation of SVM in pakage "e1071"
Hi:
I am a newer in using R for data mining, and find the "e1071" pakage an excellent tool in doing data mining work!
what frustrated me recently is that when I using the function "svm" and using the "cross=10" parameters, I got all the "accuracies" of the model greater than 1. Isn't that the accuracy should be smaller than 1? so I wander how, the
2005 Mar 25
2
WaitExten question
I'm a bit confused about how WaitExten works. I assumed that when it
returns 0, the next priority in the extension would be executed, but
that doesn't seem to be the case. When I get to WaitExten and enter
extension 8, it plays the message, then Waits another 10 seconds and
times out.
[local]
exten => s,1,Wait,1 ; Wait a second, just for fun
exten =>
2003 Aug 25
11
Why doesnt anyone reply me ?
I have posted soo many times in the past but never recieved even a single
reply . seem like you people are ignoring me or either way too busy ..
never mind this is my last try .
How can record a conversation with asterisk ?
I tried to use Record() but dint work for me .. here is what i tried .
exten => s,1,Wait,1 ; Wait a second, just for fun
exten => s,2,Answer
2007 Apr 25
2
dialplan / problem with extension-length > 1
hi community,
I'm new to this list & asterisk in general, so let me first say thx to
everybody involved in providing such great tools & ressources!!
I'm currently trying to implement a simple voicebox-system.
for demonstration purposes, I've successfully connected my cellphone via
bluetooth using the current chan_cellphone-patch on the current SVN-version
of asterisk.
2005 Jan 18
1
Asterisk and IAX softphone (firefly) problem/question
Quick question from a newbie,
I have asterisk configured to dial IAX extensions (which works). When
dialing from one IAX extension (using Firefly) to another IAX extension
(also using Firefly), the Firefly client rings on the receiving end and
gives the option of accepting or denying the call. However, when I dial in
to Asterix using a VoicePulse number and dial the same extension Firefly
2011 Nov 01
2
annotate histogram
Hi all,
I want to make a histogram like the one show
http://nar.oxfordjournals.org/content/39/suppl_1/D1011/F1.expansion.html
here , but I did not figure out how to add the red marks at the bottom of
the bars. Could anybody help? Thank you very much
--
View this message in context: http://r.789695.n4.nabble.com/annotate-histogram-tp3963960p3963960.html
Sent from the R help mailing list archive
2011 Mar 21
1
value changed after paste() function
Hi all,
I am new user in R, I am trying to to use paste function to concatenate
strings which has been fetched from database table(postgres database), the
following are my code:
when i do:
> sqlFetch(channel,'transactions')
outputs are following(only parts, there are around 200 transactions in
total)
orderid productname price quantity discount
1 T10248 potato 1.80
2017 Aug 15
2
How to set absolute path for rsync?
Dear experts,
I would like get your help for the issue with --partial-dir=*absolute path.*
I’m trying to use rsync to send big file to server and config
--partial-dir=*absolute
path* since I want to store temp partial file in /tmp/ directory and keep
the destination folder clear.
My server is joe28, client is joe27. And here is the config on server.
root at joe28:~# cat
2014 Oct 08
1
RCMD SHLIB problem in 64 bits
I am trying to build a dll writen in C to be called by R.
Interestingly, when I set the global environment variable PATH to be
"c:\Rtools\bin;C:\Rtools\gcc-4.6.3;C:\Program Files\R\R-3.1.1\bin\*i386*;"
and I typed "RCMD SHLIB Permutation.c" in Cygwin, the dll was compiled and
I can sucessfully call functions after I had loaded it into 32 bits R via
.Call.
However, now I want