Displaying 20 results from an estimated 300 matches similar to: "Lower bound and upper bound in maximum likelihood"
2013 Jan 31
0
[LLVMdev] Unrolling a loop with unknown upper bound
Hi all,
I am new to llvm. I want to leverage llvm to do some basic optimization.
What I want to start is to unroll a loop with unkown upper bound. For example,
for (i = 0; i < n; i++)
{
y[i] = i;
}
can be rewritten by the compiler as follows:
for (i = 0; i < (n % 2); i++)
{
y[i] = i;
}
for ( ; i + 1 < n; i += 2) /* no initializer */
{
y[i] = i;
y[i+1] =
2011 Dec 04
1
upper bound in the integrate function depends on a parameter
Sorry for my English, is not my first language..
I have some trouble in terms of using integrate function in R.
fx is a function of m and x where m is supposed to be a unknown parameter.
>fx=function(m,x){
+ x*2/(3*m)*(1-x/(3*m))
+ }
The problem is in upper bound, it depends on parameter m.
>integrate(fx,lower=0,upper=3*m)$value
Is it possible to use the integrate function when bounds
2012 May 01
2
Define lower-upper bound for parameters in Optim using Nelder-Mead method
Dear UseRs,
Is there a way to define the lower-upper bounds for parameters fitted by
optim using the Nelder-Mead method ?
Thanks,
Arnaud
[[alternative HTML version deleted]]
2013 Dec 16
0
[LLVMdev] How can I obtain upper bound of a pointer?
This is rather off-topic for LLVM, it's a C programming question and the C
answer is: you can't. C doesn't expose any way to find the upper limit of
'Ptr' you just have to keep track of what size you used yourself.
On Sun, Dec 15, 2013 at 6:22 PM, 李永超 <lyc364 at gmail.com> wrote:
> Hi,
> How can I obtain the upper bound of a pointer in the code? For example, I
2017 Apr 05
0
Bug report: POSIX regular expression doesn't match for somewhat higher values of upper bound
>>>>> <dietmar.schindler at manroland-web.com>
>>>>> on Tue, 4 Apr 2017 08:45:30 +0000 writes:
> Dear Sirs,
> while
>> regexpr('(.{1,2})\\1', 'foo')
> [1] 2
> attr(,"match.length")
> [1] 2
> attr(,"useBytes")
> [1] TRUE
> yields the correct match, an
2016 Mar 29
1
documentation / warning when passing a vector as lower/upper bound in stats::integrate()
Dear R-dev list,
I wonder if stats::integrate shouldn't warn the user when a numeric vector
of length > 1 is passed as lower or upper bounds. If a vector is passed,
only the first value is used and the others are silently ignored:
integrate(sin, lower=0, upper=pi)
integrate(sin, lower=0:10, upper=pi)
?integrate doesn't appear to mention explicitly that the function is not
vectorised
2017 Feb 02
2
[Bug 2675] New: When adding certificates to ssh-agent, use expiry date as upper bound for lifetime
https://bugzilla.mindrot.org/show_bug.cgi?id=2675
Bug ID: 2675
Summary: When adding certificates to ssh-agent, use expiry date
as upper bound for lifetime
Product: Portable OpenSSH
Version: 7.4p1
Hardware: All
OS: All
Status: NEW
Severity: enhancement
Priority: P5
2013 Dec 16
3
[LLVMdev] How can I obtain upper bound of a pointer?
Hi,
How can I obtain the upper bound of a pointer in the code? For example, I
have
a pointer Ptr which points to a block of memory that is allocated by
malloc, say,
Ptr = malloc(size);
Then what should I do if I am going to get the upper bound of the memory
block
that is pointed to by Ptr in the runtime?
Thanks,
Ben
-------------- next part --------------
An HTML attachment was scrubbed...
2017 Apr 04
2
Bug report: POSIX regular expression doesn't match for somewhat higher values of upper bound
Dear Sirs,
while
> regexpr('(.{1,2})\\1', 'foo')
[1] 2
attr(,"match.length")
[1] 2
attr(,"useBytes")
[1] TRUE
yields the correct match, an incremented upper bound in
> regexpr('(.{1,3})\\1', 'foo')
[1] -1
attr(,"match.length")
[1] -1
attr(,"useBytes")
[1] TRUE
incorrectly yields no match.
R versions tested:
2.11.1
2005 May 05
1
TC breaking Virtual network connection
Good afternoon,
I am a newbie to lartc. I have read the HOWTO. I set up a CBQ traffic control using the following commands, and it caused my VNC connection to break frequently.
=======================================================================
**CBQ: cbq-1280.My_shaper
/sbin/tc qdisc del dev lo root
/sbin/tc qdisc add dev lo root handle 1 cbq bandwidth 20Mbps avpkt 1000 cell 8
/sbin/tc
2006 May 08
1
Rails workshops/training in the Upper Valley
Hey, everyone. Wanted to post this announcement to the list. This is
for a series of workshops that myself and my business partner are
putting on. For those that live in the Northern New England area,
looking to get some good hands-on instruction into Rails, this might
be for you.
Oh.. and don''t be too freaked out by my picture on the front page.
I''ve got a fairly
2005 Oct 24
1
stepAIC formula upper limit guidelines
Hello,
I am attempting to refine an lm()-generated model using the stepAIC
function.
My model has approximately 20 inputs and I am trying to determine the best
upper limit scope for using those inputs.
My lower limit is "y ~ 1" and my original upper limit was "y ~ x1 + x2 + ...
+ x20".
This is great start, but I am wondering if some other (more broad) upper
limit would
2012 Apr 25
0
[PATCH] xen: Fix memory hotplug epfn upper limit test for updating the compat M2P table
The epfn is being compared to (RDWR_COMPAT_MPT_VIRT_END - RDWR_COMPAT_MPT_VIRT_START) without a 2 bit shift, resulting in the epfn being compared to the size of the RDWR_COMPAT_MPT table in bytes instead of the maximum page frame number that the RDWR_COMPAT_MPT table can map.
Signed-off-by: Malcolm Crossley <malcolm.crossley@citrix.com>
diff -r 274e5accd62d -r 8b1e0a2ccd7f
2013 Jan 10
1
Question about memory upper limit
My CPU is 64 bit, but my CentOS is 32 bit version. Does my system support memory larger than 4G?
Dae James
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.centos.org/pipermail/centos-docs/attachments/20130110/7a547187/attachment-0006.html>
2009 Dec 01
1
draw a box at 10% lower and upper in scatter plot
Hi,
I would like to draw a box at each corner of lower 10% and upper 10% in the scatter plot on(0,1)*(0,1) to indicate the lower and upper tail. I hope somebody can help me.
Here is my code:
## scatter plot
plot(hume_uni[,2],beec_uni[,2], pch=19, xlab="Hume_uni", ylab="Beec_uni", col= "blue")
title(main="Scatter plot of uniformised data of Hume and
2009 Feb 09
0
Problem with upper case extension names
It seems as if there is a problem if one uses Local/SomeName at some_context in
a Dial application. If the extension is changed to somename then things
work.
I have an extension SomeName defined. In another extension I try to dial
this extension and it does not work saying extension/context not found. The
extension displayed has uppercase characters so the case is not lost.
If I change the
2013 Jul 05
0
uid number from AD out of winbinds upper limit (1410065407)?
Hello, I'm seem to be hitting an upper limit on the range in winbind for
idmap or I have something configured incorrectly...
Here are the lines from my smb.conf
idmap config CORP:range = 1000000000-9999999999
idmap config CORP:backend = ad
idmap config CORP:schema_mode = rfc2307
[2013/07/05 14:47:09.217707, 5]
../source3/passdb/pdb_interface.c:1392(pdb_default_uid_to_sid)
2015 Sep 25
2
Upper 32bits from 64bit value
Hi,
I need to fetch lower and higher 32bits from 64bit value. I found
"CreateLShr" function to fetch lower 32bits,
llvm::Value *intermediateValue = LLVMIRBuilder->CreateLShr(x64BitValue, 32);
What function I need to use for fetching upper 32bits from 64bit value.
Thanks in advance,
Deep
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2012 Mar 15
1
windbind and AD authentication - UPPER CASE usernames?
We're looking at using windbind and AD for our user account details but have run into a small snag. All user accounts in AD are upper case but our linux accounts are lower-case.
Is there a simple solution we've overlooked?
We really don't want to have to hack this...
Thanx,
Russell SMithies
=======================================================================
Attention: The
2004 Sep 02
1
netbios alias upper case file name problem
Hi,
everybody there.
I get problems when using netbios alias with samba 3.04a.
Upper case file names for alias will not work for me.
I have to change to lower case file name.
for example, config file "SMB.CONF.BACKUP_SVR-1" for alias server
BACKUP_SVR-1 will not work until I change the file name to
"smb.conf.backup_svr-1".
How can I fix the problem? I like to use uppercase.