Displaying 20 results from an estimated 100 matches for "qn".
Did you mean:
qpn
2011 Apr 21
0
C source code question (Robustbase edition)
...ation
protocol as n everywhere in the code).
The "new" source compiles, but when i give it reasonable
values of p0, it runs unto an infinite loop.
(where i leave the p0 variable in the source, but comment
out my modified line everything works perfectly, again).
I rewrote the qn code in R, by "translating" the source code.
qn.R always gives the expected result (i.e. does not run unto
an infinite loop).
I'm a tiny bit puzzled. Below i attach the modified qn.c and qn.R sources:
Thanks in advance for any hint
/*
* Copyright (C) 2005--2007 Martin M...
2019 Feb 14
2
[PATCH] v2v: windows: save log file from rhev-apt installer
...on(+), 1 deletion(-)
diff --git a/v2v/convert_windows.ml b/v2v/convert_windows.ml
index 1db3c0ea6..7ea56592c 100644
--- a/v2v/convert_windows.ml
+++ b/v2v/convert_windows.ml
@@ -378,7 +378,7 @@ echo Wait for PnP to complete
@echo off
echo installing rhev-apt
-\"\\rhev-apt.exe\" /S /v/qn
+\"\\rhev-apt.exe\" /S /v/qn /v/l*vx \"/v\\\"%cd%\\rhev-apt.log\\\"\"
echo starting rhev-apt
net start rhev-apt
--
2.20.1
2013 Mar 04
2
[LLVMdev] ARM assembler's syntax in clang
...,=DataTable
The error becomes: unsupported relocation on symbol. How can I get around
this in clang?
Thanks in advance!
On Mon, Feb 25, 2013 at 7:14 PM, Ashi <ashi08104 at gmail.com> wrote:
> Hi,all,
> I've some problem when using clang compile my ARM assembly code:
>
> 1 .qn directive
> In GAS, .qn directive is used to create typed and/or indexed register
> aliases for use in Advanced SIMD Extension (Neon) instructions.(
> http://sourceware.org/binutils/docs/as/ARM-Directives.html#ARM-Directives)
> But clang's integrated-as seems have different syntax,...
2013 Feb 25
0
[LLVMdev] ARM assembler's syntax in clang
Hi,all,
I've some problem when using clang compile my ARM assembly code:
1 .qn directive
In GAS, .qn directive is used to create typed and/or indexed register
aliases for use in Advanced SIMD Extension (Neon) instructions.(
http://sourceware.org/binutils/docs/as/ARM-Directives.html#ARM-Directives)
But clang's integrated-as seems have different syntax, for example, my code...
2009 May 12
1
Power function for ratio of lognormal means: two equally valid results? [SEC=Unclassified]
...M2)}=0.05, and confidence level= 100(1-alpha), alpha=0.05, then how is the power function calculated?
As far as I can see we can calculate the power in the two ways given below and if there is no assumed direction to difference between M1 and M2 are not both calculations valid?
> # P=-0.1
> qn <- qnorm(p=0.05, mean=0, sd=0.05, lower.tail=T)
> Power.1 <- pnorm(q=qn, mean=log(0.9), sd=0.05, lower.tail=T)
> # P=0.1
> qn <- qnorm(p=0.95, mean=0, sd=0.05, lower.tail=T)
> Power.2 <- pnorm(q=qn, mean=log(1.1), sd=0.05, lower.tail=F)
>
> print(c(Power.1,Power.2))
[1...
2013 Mar 10
0
max row
...t;>>
>>>>d<-within(d,{
>>>>term1_p1<- dbinom(x1,m1, p1L, log=FALSE)* dbinom(y1,n1,p1H, log=FALSE)
>>>>term1_p0<- dbinom(x1,m1, p0L, log=FALSE)* dbinom(y1,n1,p0H, log=FALSE)
>>>>}) ? ? ?
>>>>
>>>>########## add Qm Qn ##################################
>>>>set.seed(8)
>>>>d1<-do.call(rbind,lapply(seq_len(nrow(d)),function(i){
>>>>Pm<- rbeta(1000,0.2+d[i,"x1"],0.8+d[i,"m1"]-d[i,"x1"]);
>>>>Pn<- rbeta(1000,0.2+d[i,"y1"...
2013 Feb 23
2
[LLVMdev] ARM assembler's syntax in clang
Hi, Jim,
Why "asm" name is a horrible hack? Do you have any suggestion for cross-platform support of my ARM assembly code?
Thanks!
ashi
On Feb 21, 2013, at 2:00 AM, Jim Grosbach <grosbach at apple.com> wrote:
> You were correct the first time. That post is talking about a Windows target. Ashi is working on iOS. Underscores are normal and expected. Using an "asm" name
2010 Oct 08
23
O2CB global heartbeat - hopefully final drop!
All,
This is hopefully the final drop of the patches for adding global heartbeat
to the o2cb stack.
The diff from the previous set is here:
http://oss.oracle.com/~smushran/global-hb-diff-2010-10-07
Implemented most of the suggestions provided by Joel and Wengang.
The most important one was to activate the feature only at the end,
Also, got mostly a clean run with checkpatch.pl.
Sunil
2013 Mar 05
0
[LLVMdev] ARM assembler's syntax in clang
...relocation on symbol. How can I get around
> this in clang?
>
> Thanks in advance!
>
> On Mon, Feb 25, 2013 at 7:14 PM, Ashi <ashi08104 at gmail.com> wrote:
>
>> Hi,all,
>> I've some problem when using clang compile my ARM assembly code:
>>
>> 1 .qn directive
>> In GAS, .qn directive is used to create typed and/or indexed register
>> aliases for use in Advanced SIMD Extension (Neon) instructions.(
>> http://sourceware.org/binutils/docs/as/ARM-Directives.html#ARM-Directives
>> )
>> But clang's integrated-as see...
2012 Jul 17
1
Threshold Quantile Regression code CRASHES in R
...one independent variable + constant.
joint_thresh <- function(y,x,q){
n=nrow(y)
k=ncol(x)
e=y-x%*%rq(y~x,tau)$coefficients[2]-rq(y~x,tau)$coefficients[1]
s0 <- det(t(e)%*%e)
n1 <- round(.05*n)+k
n2 <- round(.95*n)-k
qs <- sort(q)
qs <- qs[n1:n2]
qs <- as.matrix(unique(qs))
qn <- nrow(qs)
sn <- matrix(0,qn,1)
for (r in 1:qn){
d <- (q<=qs[r])
xx <- (x)*(d%*%matrix(1,1,k))
xx <- xx-x%*%rq(xx~x,tau)$coefficients[2]-rq(xx~x,tau)$coefficients[1]
ex <- e-xx%*%rq(e~xx,tau)$coefficients[2]-rq(e~xx,tau)$coefficients[1]
exw <- ex*(tau-(ex<0))...
2020 Mar 03
2
[PATCH v3] windows: delay installation of qemu-ga MSI
...ex 0fda1d4e..bed5989a 100644
--- a/v2v/convert_windows.ml
+++ b/v2v/convert_windows.ml
@@ -429,14 +429,10 @@ popd
List.iter (
fun msi_path ->
let fb_script = "\
-echo Installing qemu-ga from " ^ msi_path ^ "
-\"\\" ^ msi_path ^ "\" /norestart /qn /l+*vx \"%~dpn0.log\"
-set elvl=!errorlevel!
-echo Done installing qemu-ga error_level=!elvl!
-if !elvl! == 0 (
- echo Restarting Windows...
- shutdown /r /f /c \"rebooted by firstboot script\"
-)
+echo Removing any previously scheduled qemu-ga installation
+schtasks.exe /Dele...
2009 Oct 20
2
descriptive statistics qn
This is day one on R for me, I am trying to figure out how to do simple
computations. For example I have a data set with 200 observations. I am
trying to compute the mean and variance in r for 1:25 (first 25
observations); 1:50 (first 50 obs) ; 1:100th observation etc. Here is the
dataset:
Id value
1 2.2338
2 3.13597
3 1.98685
4 4.35593
5 2.43963
6 4.20262
7 3.12131
8 4.79583
9 3.13937
10
2013 Mar 06
3
[LLVMdev] ARM assembler's syntax in clang
...LDR R7,=DataTable
The error becomes: unsupported relocation on symbol. How can I get around this in clang?
Thanks in advance!
On Mon, Feb 25, 2013 at 7:14 PM, Ashi <ashi08104 at gmail.com> wrote:
Hi,all,
I've some problem when using clang compile my ARM assembly code:
1 .qn directive
In GAS, .qn directive is used to create typed and/or indexed register aliases for use in Advanced SIMD Extension (Neon) instructions.(http://sourceware.org/binutils/docs/as/ARM-Directives.html#ARM-Directives)
But clang's integrated-as seems have different syntax, for example, my code:...
2020 Mar 05
1
Re: [PATCH v3] windows: delay installation of qemu-ga MSI
...+ b/v2v/convert_windows.ml
> > @@ -429,14 +429,10 @@ popd
> > List.iter (
> > fun msi_path ->
> > let fb_script = "\
> > -echo Installing qemu-ga from " ^ msi_path ^ "
> > -\"\\" ^ msi_path ^ "\" /norestart /qn /l+*vx \"%~dpn0.log\"
> > -set elvl=!errorlevel!
> > -echo Done installing qemu-ga error_level=!elvl!
> > -if !elvl! == 0 (
> > - echo Restarting Windows...
> > - shutdown /r /f /c \"rebooted by firstboot script\"
> > -)
> > +echo Remo...
2013 Feb 01
29
cumulative sum by group and under some criteria
Thank you very much for your reply. Your code work well with this example.
I modified a little to fit my real data, I got an error massage.
Error in split.default(x = seq_len(nrow(x)), f = f, drop = drop, ...) :
Group length is 0 but data length > 0
On Thu, Jan 31, 2013 at 12:21 PM, arun kirshna [via R] <
ml-node+s789695n4657196h87@n4.nabble.com> wrote:
> Hi,
> Try this:
>
2020 Mar 02
2
[PATCH 0/1] Delay installation of QEMU-GA
This is a replacement for previously posted patch "Delay firstboot scripts to
some later time":
https://www.redhat.com/archives/libguestfs/2019-November/msg00134.html
Instead of delaying all the firstboot scripts we just delay the QEMU-GA
installation that we know is problematic. I will possibly send a similar patch
for RHEV-APT installation later.
Tom?? Golembiovsk? (1):
windows:
2018 Sep 03
0
[PATCH] v2v: windows: Fix rhev-apt command line (RHBZ#1624902).
...hat.com/show_bug.cgi?id=1584678#c15
Fixes commit bcdbe6405c10ecb7374ae47eee6385be17dbd49e. However this
bug was copied directly from old virt-v2v which did the same thing
(from lib/Sys/VirtConvert/Converter/Windows.pm):
echo installing rhev-apt >>log.txt
"rhev-apt.exe" /S /v /qn >>log.txt
Thanks: Lev Veyde
---
v2v/convert_windows.ml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/v2v/convert_windows.ml b/v2v/convert_windows.ml
index 1e058136e..0346ba4fe 100644
--- a/v2v/convert_windows.ml
+++ b/v2v/convert_windows.ml
@@ -347,7 +347,7 @@ echo Wai...
2020 Mar 05
2
[PATCH v4] windows: delay installation of qemu-ga MSI
...a/v2v/convert_windows.ml
+++ b/v2v/convert_windows.ml
@@ -428,16 +428,13 @@ popd
and configure_qemu_ga files =
List.iter (
fun msi_path ->
- let fb_script = "\
-echo Installing qemu-ga from " ^ msi_path ^ "
-\"\\" ^ msi_path ^ "\" /norestart /qn /l+*vx \"%~dpn0.log\"
-set elvl=!errorlevel!
-echo Done installing qemu-ga error_level=!elvl!
-if !elvl! == 0 (
- echo Restarting Windows...
- shutdown /r /f /c \"rebooted by firstboot script\"
-)
-" in
+ let fb_script = sprintf "\
+echo Removing any previously...
2013 Mar 07
0
[LLVMdev] ARM assembler's syntax in clang
...ion on symbol. How can I get around
> this in clang?
>
> Thanks in advance!****
>
> ** **
>
> On Mon, Feb 25, 2013 at 7:14 PM, Ashi <ashi08104 at gmail.com> wrote:****
>
> Hi,all,
> I've some problem when using clang compile my ARM assembly code:
>
> 1 .qn directive
> In GAS, .qn directive is used to create typed and/or indexed register
> aliases for use in Advanced SIMD Extension (Neon) instructions.(
> http://sourceware.org/binutils/docs/as/ARM-Directives.html#ARM-Directives)
> But clang's integrated-as seems have different syntax,...
2020 Mar 05
0
Re: [PATCH v3] windows: delay installation of qemu-ga MSI
...v2v/convert_windows.ml
> +++ b/v2v/convert_windows.ml
> @@ -429,14 +429,10 @@ popd
> List.iter (
> fun msi_path ->
> let fb_script = "\
> -echo Installing qemu-ga from " ^ msi_path ^ "
> -\"\\" ^ msi_path ^ "\" /norestart /qn /l+*vx \"%~dpn0.log\"
> -set elvl=!errorlevel!
> -echo Done installing qemu-ga error_level=!elvl!
> -if !elvl! == 0 (
> - echo Restarting Windows...
> - shutdown /r /f /c \"rebooted by firstboot script\"
> -)
> +echo Removing any previously scheduled qemu-...