Displaying 3 results from an estimated 3 matches for "indivdiual".
2017 Feb 19
5
RFC: Adding llvm::ThinStream
...h Yet Another Stream Abstraction. Note that LLVM already has a few.
Off the top of my head, theres:
1) `MemoryBuffer` and its associated class hierarchy
2) `raw_ostream` and it's associated classes.
3) `DataExtractor` which is used for reading from a StringRef.
There's probably more, and indivdiual subprojects might have even created
their own.
The reason I couldn't use any of these and needed to invent another is
because PDB files are not laid out contiguously in memory. You can think
of it as a file system where there is an MFT that defines the blocks that
individual files live on, an...
2009 Apr 21
2
Question on binomial data
Hi,
We have an experiment with pass/fail outcome, and a continuous
parameter which may contribute to the outcome.
First, we've analyzed it by:
p=c(F,T,F,F,F,T,T,T,T,T,T,T,F,T,T,T,T);
w=c(53,67,59,59,53,89,72,56,65,63,62,58,59,72,61,68,63);
l<-glm(p~w,family=binomial)
summary(l)
Which turned out to be non significant.
Then, we thought of comparing the parameters of the two groups
2017 Feb 22
2
RFC: Adding llvm::ThinStream
...Note that LLVM already has a few.
> Off the top of my head, theres:
>
> 1) `MemoryBuffer` and its associated class hierarchy
> 2) `raw_ostream` and it's associated classes.
> 3) `DataExtractor` which is used for reading from a StringRef.
>
> There's probably more, and indivdiual subprojects might have even created
> their own.
>
> The reason I couldn't use any of these and needed to invent another is
> because PDB files are not laid out contiguously in memory. You can think
> of it as a file system where there is an MFT that defines the blocks that
>...