Displaying 5 results from an estimated 5 matches for "yyyyyyyyyyy".
Did you mean:
yyyyyyyyyy
2013 Apr 18
1
vectors with equal values
Hi,
Try:
?vec1<-c(1,1,1,1,1,1,1,1,1)
if(all(vec1==1)) "xxxxxxxxx" else? "yyyyyyyyyyy"
#[1] "xxxxxxxxx"
?vec2<-c(rep(1,4),2)
?if(all(vec2==1)) "xxxxxxxxx" else? "yyyyyyyyyyy"
#[1] "yyyyyyyyyyy"
#or
if(length(unique(vec1))==1) "xxxxxxxxx" else? "yyyyyyyyyyy"
#[1] "xxxxxxxxx"
? if(length(unique(vec2))==1) &...
2005 May 10
5
converting an ASCII file to a matrix
...d I want to import it into R, so that every
character is defined by [i;j].
The rows are not of the same length.
the file looks like the following shortened abstract example:
name: xxxxx xxxx
age: 9.9.99
record number: 999
title: xxxxx xxxx xxx
keywords: xxx xx
"white space"
name: yyyy yyyyyyyyyyyy
age: 8.8.88
record number: 8
title: yyyy yy yyyy
keywords: yyyyyyyyyyy yyyyyyyy yyy
"white space"
I would be very grateful for your help!
Michael Graber
michael.graber at mail.uni-wuerzburg.de
2009 Nov 22
1
transferring SIP call: no voice
...Goto("SIP/sipgate-00000016", "home,447,1") in new stack
-- Goto (home,447,1)
-- Executing [447 at home:1] NoOp("SIP/sipgate-00000016", "xxxxxxxxx")
in new stack
-- Executing [447 at home:2] NoOp("SIP/sipgate-00000016",
""yyyyyyyyyyy" <xxxxxxxxx>") in new stack
-- Executing [447 at home:3] Dial("SIP/sipgate-00000016",
"SIP/nhi-riverside-sip") in new stack
== Using SIP RTP TOS bits 184
== Using SIP RTP CoS mark 5
== Using SIP VRTP CoS mark 6
== Using UDPTL TOS bits 184
==...
1997 Oct 15
8
OPLOCKS
Robert Dal Santo wrote:
> Is there any work underway to get Samba to support OPLOCKS? I know
> they are difficult to implement but I'm faced with a decisions now to buy an
> NT box (Ugh!) or do a lot of messing around to get this application
> to perform decently. The application in questions takes around 5
> hours to do a taks without OPLOCKS and around an hour to do the
2008 Mar 30
1
breaking DNID into country code, area code, and local code
Dear friends,
I am wondering if there is any efficient way of extract the country code,
area code, and local code into 3 different variables from one DNID that can
look like 001630233-4333 or 0086213345333?
International code can be 011, or 00.
National code can be 0 or 1
Country code can have 2 or 3 digits
Area code can have 2 or 3 digits
Local num can be 7-10 digits
Is there anyway to break