search for: correspoinding

Displaying 6 results from an estimated 6 matches for "correspoinding".

2014 Aug 28
4
[LLVMdev] How to tell whether a GlobalValue is user-defined
...in mergeable sections only if (among >> other things) they require only symbols that start with 'l' or 'L'. > Not sure what you mean here. What is "requiring”? Are we talking about this code in TargetLoweringObjectFileMachO::SelectSectionForGlobal() I mean "the correspoinding symbol name will start with". > if (Kind.isMergeableConst()) { > if (Kind.isMergeableConst4()) > return FourByteConstantSection; > if (Kind.isMergeableConst8()) > return EightByteConstantSection; > if (Kind.isMergeableConst16()) > return Six...
2017 Aug 27
0
Fwd: Find maxima of a function
...where dy/dx = 0. If second order derivative of y is less than 0, it?s a maximum, if greater than 0, it?s a minimum point. If zero, it?s undefined. So, at the end, we need x and y vectors to find maxima. y <- c(1,2,3,4,3,2,3,4,5,6,7,8,9,8,7,6,5,6,7,6,5) # sample y values x <- 1:length(y) # correspoinding x values # Now we need to convert this discrete x-y vectors to a function. Because we don?t know the values between points. # That?s why, we fit a cubic spline to have the values between discrete points. fun <- splinefun(x = x, y = y, method = "n?) # now, we are able to find what value o...
2007 Jul 25
2
Regarding Bivariate normal distribution.
Dear all R gurus, My question is related to statistics rather directly to R. Suppose (X,Y) has a bivariate normal distrubution. I want to find two values of X and Y say x, and y respectively, such that: P[X<x, Y<y] = 0.05 My questions are : 1. Can x and y be uniquely found? 2. If it is, how I can find them using R Your help will be highly appreciated. Thanks and regards,
2017 Aug 27
1
Fwd: Find maxima of a function
...0. If second order derivative of y is less than 0, it?s a maximum, if greater than 0, it?s a minimum point. If zero, it?s undefined. So, at the end, we need x and y vectors to find maxima. > > y <- c(1,2,3,4,3,2,3,4,5,6,7,8,9,8,7,6,5,6,7,6,5) # sample y values > x <- 1:length(y) # correspoinding x values > > # Now we need to convert this discrete x-y vectors to a function. Because we don?t know the values between points. > # That?s why, we fit a cubic spline to have the values between discrete points. > > fun <- splinefun(x = x, y = y, method = "n?) > > # no...
2017 Aug 27
2
Fwd: Find maxima of a function
---------- Forwarded message ---------- From: niharika singhal <niharikasinghal1990 at gmail.com> Date: Sun, Aug 27, 2017 at 11:57 AM Subject: Re: Find maxima of a function To: "David Winsemius [via R]" <ml+s789695n4745009h56 at n4.nabble.com>, "Ismail SEZEN [via R]" <ml+s789695n4744993h60 at n4.nabble.com>, Ulrik Stervbo <ulrik.stervbo at gmail.com>
2014 Aug 27
2
[LLVMdev] How to tell whether a GlobalValue is user-defined
>> The literalN sections were developed long ago to support coalescing of >> unnamed constants like 9.897 in source code for architectures that could not >> embed large constants in instructions. The linker could knew how to break >> up the section (e.g. __literal8 is always 8 byte chunks) and coalesce copies >> by content. >> >> ~6 years ago we