search for: calculcating

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

Did you mean: calculating
2007 Aug 14
1
Can I calculcate the percentage of a gamma function area below a cutoff value?
Hi there, I have some bird flight height data that follows a gamma distribution. The data (x) goes from 0 to 700 meters (n=1055). The calculated parameters calculated from the fitdistr(x) are (shape = 5.1379, rate = 0.017541), and therefore the scale (1/rate) = 57.00929. I would like to calculate the percentage of the function area that occurs below 50 meters (0-50m). Is that
2018 Sep 26
2
Liveness Analysis
So what is the status about LiveVariables. Is there a plan to remove it? After searching in old lvm-dev-mails it is mentioned that LiveVariable still exists due to one pass needing it. And a comment in TargetPassConfig.cpp indicates that the pass in question is TwoAddressInstruction: // FIXME: Once TwoAddressInstruction pass no longer uses kill flags, // LiveVariables can be removed
2013 Jan 14
1
Tukey HSD plot with lines indicating (non-)significance
Dear list members, I'm running some tests looking at differences between means for various levels of a factor, using Tukey's HSD method. I would like to plot the data as boxplots or dotplots, with horizontal significance lines indicating which groups are statistically significantly different, according to Tukey HSD. Here's a nice image showing an example of such a graphical
2009 Oct 30
1
Applying a function on n nearest neighbours
...0.4 setosa For each row, I look at the value of Sepal.Length. I then figure out the n rows where the value of Sepal.Length is closest to that in the original row, and apply a function on the values of Sepal.Width to these rows (typically returning a scalar). For example, setting n = 5 and calculcating the mean on a slightly modified dataset, based on the first row (Sepal.Length ~= 5.1): $ set.seed(1) $ iris[,1:4]=iris[,1:4]+runif(150)/100 $ x=iris$Sepal.Length[1] $ (pos=which(order(abs(iris$Sepal.Length-x)) %in% 2:6)) [1] 18 26 40 42 52 $ mean(iris$Sepal.Width[pos]) [1] 3.086595 Now, I could...
2018 Sep 20
2
Liveness Analysis
Where is the liveness analysis pass? I have been looking for days but cannot find anything. I just want to know transfer variables in and out of basic blocks, that are calculated using simple data flow equations. Thanks! -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20180920/529bce15/attachment.html>