search for: c13

Displaying 20 results from an estimated 113 matches for "c13".

Did you mean: 13
2013 Mar 11
2
how to convert a data.frame to tree structure object such as dendrogram
I have a data.frame object like: > data.frame(x=c('A','A','B','B'), y=c('Ab','Ac','Ba','Bd')) x y 1 A Ab 2 A Ac 3 B Ba 4 B Bd how could I create a tree structure object like this: |---Ab A---| _| |---Ac | | |---Ba B---| |---Bb Thanks, Zech [[alternative HTML version deleted]]
2007 May 25
0
deadlock issue: 1.8.6/fastthread/memcached-client/mongrel
...ebugged was signaled while in a function called from GDB. GDB remains in the frame where the signal was received. To change this behavior use "set unwindonsignal on" Evaluation of the expression containing the function (rb_p) will be abandoned. (gdb) eval "caller()" [weavere at c13-chd-app1 tools]$ Program received signal SIGINT, Interrupt. 0x00000000004132d9 in rb_thread_schedule () at eval.c:10618 10618 in eval.c The program being debugged was signaled while in a function called from GDB. GDB remains in the frame where the signal was received. To change this behavior use...
2019 Sep 30
2
lld-link with MSVC6 object files
The CodeView library in LLVM only supports Codeview C13 types, that is, MSVC 7.0 / Visual Studio 2002 or after. De : llvm-dev <llvm-dev-bounces at lists.llvm.org> De la part de David Blaikie via llvm-dev Envoyé : September 30, 2019 2:38 PM À : Paul Moran <bankybooks at gmail.com>; Rui Ueyama <ruiu at google.com> Cc : llvm-dev at lists...
2019 Sep 30
2
lld-link with MSVC6 object files
...e ( https://en.wikipedia.org/wiki/Microsoft_Visual_C%2B%2B ) & misread the "C 6.0" and didn't notice it was distinct from "Visual C++ 6.0" - thanks for the catch! > > The latest MSVC linker can link these object files. Is this just because > it has support for C13 types and some other code path for whatever MSVC6 > uses? After some digging around it appears to be this format: > > > https://docs.microsoft.com/en-us/windows/win32/debug/pe-format#coff-file-header-object-and-image > > > Which is COFF object file format? Does lld link support...
2007 Mar 10
3
long character string problem
...quent programs, which I tested with strings that for some reason do not have these double quotes (see very bottom). > cum1 [1] "A11*(X11*x1+X21*x2)+1*sqrt(B11*(X11*x1+X21*x2)^2+C11)A12*(X12*x1+X22*x2)+1*sqrt(B12*(X12*x1+X22*x2)^2+C12)A13*(X13*x1+X23*x2)+-1*sqrt(B13*(X13*x1+X23*x2)^2+C13)A14*(X14*x1+X24*x2)+-1*sqrt(B14*(X14*x1+X24*x2)^2+C14)A15*(X15*x1+X25*x2)+1*sqrt(B15*(X15*x1+X25*x2)^2+C15)A16*(X16*x1+X26*x2)+1*sqrt(B16*(X16*x1+X26*x2)^2+C16)A17*(X17*x1+X27*x2)+1*sqrt(B17*(X17*x1+X27*x2)^2+C17)A18*(X18*x1+X28*x2)+1*sqrt(B18*(X18*x1+X28*x2)^2+C18)A19*(X19*x1+X29*x2)+-1*sqrt(B19*(...
2013 Feb 20
1
[LLVMdev] Question about accessing coprocesser register in prologue
An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20130220/a080958f/attachment.html> -------------- next part -------------- A non-text attachment was scrubbed... Name: 201302201044290_44YDXKW4.gif Type: image/gif Size: 14036 bytes Desc: not available URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20130220/a080958f/attachment.gif>
2000 Feb 25
0
Summary: Partial correlation coefficients in R. Thanks everybody!
Hello all, here's a collection of answers I got on my question concerning partial correlation coefficients: Some people gave a simple formula for the three-variable-case, as did Dave Lucy: pcor <- function(v1, v2, v3) { c12 <- cor(v1, v2) c23 <- cor(v2, v3) c13 <- cor(v1, v3) partial <- (c12-(c13*c23))/(sqrt(1-(c13^2)) * sqrt(1-(c23^2))) return(partial) } The general algorithm was given by John Logsdon, among others: The partial correlation coefficients are the negative scaled off-diagonal inverse variance. So compute the variance-covar...
2018 Aug 31
2
PDB questions
...and column. I still have a couple of loose ends though. Do you know what's going on here? 1. There appears to be 8 bytes before every LineFragmentHeader. Here's some of my own debug output, which matches llvm-pdbutil's output. You can see it says "unknown bytes: ...". read C13 line info 136720 bytes unknown bytes: f2 00 00 00 60 00 00 00 LineFragmentHeader{ .RelocOffset = 0, .RelocSegment = 5, .Flags = LineFlags{ .LF_HaveColumns = true, .unused = 0 }, .CodeSize = 52 } has column: true LineBlockFragmentHeader{ .NameIndex = 0, .NumLines = 6, .BlockSize = 84 } LineNumberEn...
2000 Feb 25
2
partial correlation coefficients in R?
Hello, after thorough searching of the R help files as well as S+-help, I'm coming to the list: Is there a possibility to compute partial correlation coefficients between multiple variables (correlation between two paired samples with the "effects of all other variables partialled out")? All I seem to find are the standard Pearson correlation coefficients (with cor()) and no clue
2018 Aug 31
2
PDB questions
...cuous can often have a lot of stuff hidden behind it. For example you could step through that loop that iterates the debug subsections and look at the value of Reader.getOffset() every time, and see if it matches with your own code (probably it doesn’t). Or you could dump the entire contents of the C13Substrem and see if the bytes match up between your own implementation. It looks like you’re reading all 0s, so maybe you’re just not even reading the right data. For the second question, unfortunately I don’t know of a better way. If the/names stream starts with a magic header, maybe you could wal...
2019 Sep 30
2
lld-link with MSVC6 object files
...) & misread the >> "C 6.0" and didn't notice it was distinct from "Visual C++ 6.0" - thanks >> for the catch! >> >> >>> >>> The latest MSVC linker can link these object files. Is this just because >>> it has support for C13 types and some other code path for whatever MSVC6 >>> uses? After some digging around it appears to be this format: >>> >>> >>> https://docs.microsoft.com/en-us/windows/win32/debug/pe-format#coff-file-header-object-and-image >>> >>> >>>...
2013 Mar 11
4
Pedigreemm
Hola a todos, me gustaría realizar una consulta asociada a la generación de valores genéticos del pedigreemm en R. Primero generé el archivo de pedigree incluyendo los parentales para posteriormente estimar la varianza aditiva y los valores genéticos para cada individuo, relacionando los individuos por medio de la matriz de parentesco. Me da todo perfecto, el complemento pedigreemm trabaja muy
2016 Oct 25
2
CVE-2016-5195 “DirtyCOW”: Critical Linux Kernel Flaw
...at rth.dk> wrote: > What is the best approach on centos 6 to mitigate the problem is > officially patched? As far as I can tell Centos 6 is vulnerable to attacks > using ptrace. > > There is a mitigation described here > > https://bugzilla.redhat.com/show_bug.cgi?id=1384344#c13 > > which doesn't fix the underlying problem, but at least protects against > known attack vectors. However, I'm unsure if the script only applies to > Centos 7, or if it also works on Centos 6? > > Cheers, Christian > > I have not been able to get this script to wor...
2019 Oct 01
2
lld-link with MSVC6 object files
...and didn't notice it was distinct from "Visual C++ 6.0" - thanks >>>> for the catch! >>>> >>>> >>>>> >>>>> The latest MSVC linker can link these object files. Is this just >>>>> because it has support for C13 types and some other code path for whatever >>>>> MSVC6 uses? After some digging around it appears to be this format: >>>>> >>>>> >>>>> https://docs.microsoft.com/en-us/windows/win32/debug/pe-format#coff-file-header-object-and-image >&g...
2011 Mar 31
0
[LLVMdev] Announcing LLVM 2.9 RC3 Testing Phase
On Mon, Mar 28, 2011 at 03:07:25PM -0700, Bill Wendling wrote: > Hi David, > > Yes. It was the main reason why I decided to do an RC3. :-) > > -bw Bill, Any chance we can squeeze http://llvm.org/bugs/show_bug.cgi?id=9571#c13 into llvm-gcc-4.2-2.9 for the final llvm-gcc release? Jack > > On Mar 28, 2011, at 10:41 AM, David Terei wrote: > > > Hi Bill, > > > > Is the fix for Bug 9561 included? (http://llvm.org/bugs/show_bug.cgi?id=9561) > > > > Cheers, > > David...
2012 Mar 30
2
[LLVMdev] TEXTREL usr/lib/llvm/libLLVM-3.0.so on PPC
Hi, > The patch in PR is wrong since it will make both darwin and windows > unhappy. I will comment on gentoo PR about possible proper solution. I'll give it a try as you comment on the gentoo PR. But my ppc box is in my office, so I'll post a result on next Monday (JST). Thanks,
2012 Apr 02
0
[LLVMdev] TEXTREL usr/lib/llvm/libLLVM-3.0.so on PPC
...er solution. > > I'll give it a try as you comment on the gentoo PR. > But my ppc box is in my office, so I'll post a result on next Monday (JST). I posted my result on the gentoo PR. https://bugs.gentoo.org/show_bug.cgi?id=403519#c12 https://bugs.gentoo.org/show_bug.cgi?id=403519#c13 https://bugs.gentoo.org/show_bug.cgi?id=403519#c14 Thanks,
2020 Feb 11
1
Time machine backups: fruit_tmsize_do_dirent()
...e anyone else as clueless as I am runs into this: this isn't really a Samba issue. Samba's fruit_get_num_bands() failed, but the "purgeable" in the bundle name indicates that this is a backup deemed broken by Apple's Time Machine (see e.g. https://www.baligu.com/pondini/TM/C13.html). So it seems Time Machine won't do anything with it and I shouldn't expect Samba to repair it for me either. // Best wishes; Johan
2006 Mar 15
2
difftime arguments
Hi I just started using RGui.exe under widnows. I have a text file containing date arranged in columns and rows, each column has the same format, each row with different formats. 3 of the columns are something like this 1/12/2006 3:59:45 PM I need to calculate the different in seconds between 2 selected periods using their row’s index My solution: Read the file in a data frame and
2000 Dec 22
1
Found "answer" to my question on MTB's INDICATOR
...0 0 5 0 0 0 1 6 0 0 1 0 attr(,"assign") [1] 1 1 1 1 NA does not appear, fine with me. Certainly, this is not exactly the same as Minitab's INDICATOR: INDICATOR C2, C11-C15 C2 C11 C12 C13 C14 C15 2 1 0 0 0 0 2 1 0 0 0 0 5 ------> 0 0 0 1 0 3 0 1 0 0 0 6 0 0 0 0 1 5 0 0 0 1 0 * * * * * * where * is missing code in Minitab....