search for: seq_

Displaying 5 results from an estimated 5 matches for "seq_".

Did you mean: seq
2018 Aug 05
2
Is this a bug in `[`?
El dom., 5 ago. 2018 a las 6:27, Kenny Bell (<kmbell56 at gmail.com>) escribi?: > > This should more clearly illustrate the issue: > > c(1, 2, 3, 4)[-seq_len(4)] > #> numeric(0) > c(1, 2, 3, 4)[-seq_len(3)] > #> [1] 4 > c(1, 2, 3, 4)[-seq_len(2)] > #> [1] 3 4 > c(1, 2, 3, 4)[-seq_len(1)] > #> [1] 2 3 4 > c(1, 2, 3, 4)[-seq_len(0)] > #> numeric(0) > Created on 2018-08-05 by the reprex package (v0.2.0.9000)....
2018 Aug 29
0
Is this a bug in `[`?
...matrixStats. /Henrik On Sun, Aug 5, 2018 at 3:42 AM I?aki ?car <i.ucar86 at gmail.com> wrote: > > El dom., 5 ago. 2018 a las 6:27, Kenny Bell (<kmbell56 at gmail.com>) escribi?: > > > > This should more clearly illustrate the issue: > > > > c(1, 2, 3, 4)[-seq_len(4)] > > #> numeric(0) > > c(1, 2, 3, 4)[-seq_len(3)] > > #> [1] 4 > > c(1, 2, 3, 4)[-seq_len(2)] > > #> [1] 3 4 > > c(1, 2, 3, 4)[-seq_len(1)] > > #> [1] 2 3 4 > > c(1, 2, 3, 4)[-seq_len(0)] > > #> numeric(0) > > Created...
2018 Aug 04
3
Is this a bug in `[`?
...derstanding how negative indexing works but >> >> 1) This is right. >> >> (1:10)[-1] >> #[1] 2 3 4 5 6 7 8 9 10 >> >> 2) Are these right? They are at least surprising to me. >> >> (1:10)[-0] >> #integer(0) >> >> (1:10)[-seq_len(0)] >> #integer(0) >> >> >> It was the last example that made me ask, seq_len(0) whould avoid an >> if/else or something similar. > > I think it's ok, because there is no negative zero integer, so -0 is 0. Ok, this makes sense, I should have thought abou...
2007 Apr 18
2
[PATCH] exec-shield style vdso move.
...c .23560-linux-2.6.17-rc4-git3.updated/fs/proc/task_mmu.c --- .23560-linux-2.6.17-rc4-git3/fs/proc/task_mmu.c 2006-03-23 12:44:56.000000000 +1100 +++ .23560-linux-2.6.17-rc4-git3.updated/fs/proc/task_mmu.c 2006-05-17 17:10:49.000000000 +1000 @@ -153,22 +153,23 @@ static int show_map_internal(struct seq_ pad_len_spaces(m, len); seq_path(m, file->f_vfsmnt, file->f_dentry, "\n"); } else { - if (mm) { - if (vma->vm_start <= mm->start_brk && + const char *name = arch_vma_name(vma); + if (!name) { + if (mm) { + if (vma->vm_start <= mm->start_br...
2007 Apr 18
2
[PATCH] exec-shield style vdso move.
...c .23560-linux-2.6.17-rc4-git3.updated/fs/proc/task_mmu.c --- .23560-linux-2.6.17-rc4-git3/fs/proc/task_mmu.c 2006-03-23 12:44:56.000000000 +1100 +++ .23560-linux-2.6.17-rc4-git3.updated/fs/proc/task_mmu.c 2006-05-17 17:10:49.000000000 +1000 @@ -153,22 +153,23 @@ static int show_map_internal(struct seq_ pad_len_spaces(m, len); seq_path(m, file->f_vfsmnt, file->f_dentry, "\n"); } else { - if (mm) { - if (vma->vm_start <= mm->start_brk && + const char *name = arch_vma_name(vma); + if (!name) { + if (mm) { + if (vma->vm_start <= mm->start_br...