Displaying 7 results from an estimated 7 matches for "segm".
Did you mean:
seg
2007 Apr 14
2
Samba -> WinXP: slow transfers, partial solution
...: 0/0 SYN/FIN pkts sent: 0/0
urgent data pkts: 0 pkts urgent data pkts: 0 pkts
urgent data bytes: 0 bytes urgent data bytes: 0 bytes
mss requested: 0 bytes mss requested: 0 bytes
max segm size: 170 bytes max segm size: 1460 bytes
min segm size: 40 bytes min segm size: 39 bytes
avg segm size: 63 bytes avg segm size: 1426 bytes
max win adv: 65535 bytes max win adv: 24656...
2005 Oct 16
2
Lost packets and strange "behaviour" of my TC rules
... 0 sacks sent: 0
urgent data pkts: 0 pkts urgent data pkts: 0 pkts
urgent data bytes: 0 bytes urgent data bytes: 0 bytes
mss requested: 1460 bytes mss
requested: 0 bytes
max segm size: 1448 bytes max segm size: 0 bytes
min segm size: 552 bytes min segm size: 0 bytes
avg segm size: 999 bytes avg segm size: 0 bytes
max win adv: 5840
bytes max win adv: 0 by...
2005 May 25
0
Can simulation involving random number generation be segm ented?
...nger
-----Original Message-----
From: r-help-bounces at stat.math.ethz.ch
[mailto:r-help-bounces at stat.math.ethz.ch] On Behalf Of Uwe Ligges
Sent: Wednesday, May 25, 2005 8:56 AM
To: Dr L. Y Hin
Cc: r-help at stat.math.ethz.ch
Subject: Re: [R] Can simulation involving random number generation be
segmented?
Dr L. Y Hin wrote:
> Dear all,
> Apologies for this pedantic question that only arise when there is
hardware
> limitation.
> Setting: R 2.1.0 for windows xp sp2.
> Scenario:
> To generate 1000 samples using rnorm for a simulation activity.
> Background:
> The simula...
2012 May 04
0
Counting cases within present ranges
...bject that lists where each user's range
> begins (ie (1,30,51,etc).
>
> My question is, how do I count the non-uniform cases in each range, and
> give the count for each range its own
> value in a new object?
>
Try this:
fun <- function(x, g, pattern="AB"){
segm <- c(g - 1, length(x))[-1]
sapply(seq_along(g), function(i) sum(grepl(pattern, x[g[i]:segm[i]])))
}
x <- c("AAAAAAAAA", "AAAAAAAAA", "ABABABABA", "AAAAAAAAA", "AAAAAAAAA",
"ABABABABA")
guys <- c(1, 3, 6)
counts <- fun(x, guy...
2010 Aug 13
1
loop for inserting rows in a matrix
Dear R friends,
I have a matrix with 2060 rows and 41 columns. One column is Date, another is Transect, and another is Segment. I want to ensure that there are 9 Transects (1 to 9) for each Date, and 8 Segments (1 to 8) for each Transect in the matrix, by inserting rows where these are missing.
I am new to coding, but am trying to write a loop which checks if each of the transects already exists, and then adds a row...
2024 Jan 03
1
Files exist, but sometimes are not seen by the clients: "No such file or directory"
...s.
$ ls -l /home/RESEARCH/user.x/some_path/
total 334500
-rw-r--r-- 1 user.x group_x 348521772 Jan 19 15:26 file_17.avi
-rw-r--r-- 1 user.x group_x 978252 Jan 19 15:26 file_17.csv
-rw-r--r-- 1 user.x group_x 1185 Jun 5 10:05 idtracker.log
drwxr-xr-x 2 user.x group_x 4096 Jun 2 21:17 segm
3. try to ls file again. This time, it is found.
$ ls -l /home/RESEARCH/user.x/some_path/idtracker.log
-rw-r--r-- 1 user.x group_x 1185 Jun 5 10:05 /home/RESEARCH/user.x/some_path/idtracker.log
The glusterfs filesystem is mounted like this
storage:/tank on /nfs/tank type fuse.glusterfs (rw,rel...
1999 Oct 17
1
Observing nasty crashes
...o not sent data over the tunnel continuously as with
ping
etc. Just open a telnet session, wait for 5 minutes and type something.
This will almost
certainly trigger a key refresh, which will have a side effect of
flushing the queues.
If the len gets corrupted, the crypting will crash the program (segm
fault).
In general, I think the program needs a checksum to see that it does not
decrypt
corrupted packets. Since it uses UDP, the packets can get corrupted.
After that, I had a look to the add_queue() and flush_queue() funcs.
Need to so some
more work here. flush_queue() will call recv() for mor...