Displaying 20 results from an estimated 248 matches for "vx".
Did you mean:
vmx
2019 Jun 13
1
"samba-tool domain join" doesn't work with -U and -k
...nfirmed all AD DNS
resolution works)
- I've copied the basic /etc/krb5.conf that was spit out during provisioning
- I've got a valid kerberos ticket ("kinit Administrator" worked)
- I can query info about the domain via dc1:
# samba-tool domain info dc1
Forest : ad-test.vx
Domain : ad-test.vx
Netbios domain : ADTEST
DC name : dc1.ad-test.vx
DC netbios name : DC1
Server site : Default-First-Site-Name
Client site : Default-First-Site-Name
I am unable to join dc2. All of the following fail:
# samba-tool domain join ad-test.vx DC -U '...
2008 Jan 03
4
physical device
Hi!
I'' ve a xen virtual machine, and i'' d like to assign cdrw device to it. My
physical device on domain0 is /dev/hda, and in the configuration file i''
ve this:
disk = [ ''phy:vg0/vx-disk,sda1,w'', ''phy:vg0/vx-swap,sda2,w'',
''phy:vg0/vx-data,sda5,w'' ]
I'' ve tried to assign the cdrom to it in many ways i found in different
examples, but none of them worked. I tried to load the cdrom, and
ide-generic module, and create the devi...
2019 Jun 27
2
[PATCH v2] drm/bochs: fix framebuffer setup.
....c
@@ -255,16 +255,22 @@ void bochs_hw_setformat(struct bochs_device *bochs,
}
void bochs_hw_setbase(struct bochs_device *bochs,
- int x, int y, u64 addr)
+ int x, int y, int stride, u64 addr)
{
- unsigned long offset = (unsigned long)addr +
+ unsigned long offset;
+ unsigned int vx, vy, vwidth;
+
+ bochs->stride = stride;
+ offset = (unsigned long)addr +
y * bochs->stride +
x * (bochs->bpp / 8);
- int vy = offset / bochs->stride;
- int vx = (offset % bochs->stride) * 8 / bochs->bpp;
+ vy = offset / bochs->stride;
+ vx = (offset % bochs->stride) *...
2013 May 20
1
How to fit a normal inverse gaussian distribution to my data using optim
...ara[2]
omega <- para[3]
tau <- para[4]
a <- para[5]
b <- para[6]
beta <- para[7]
theta <- para[8]
gamma <- para[9]
phi <- para[10]
T <- nrow(data)
ret <- data[,2];
rate <- data[,3]
exret=100*(ret+1-((rate/100)+1)^(1/365))
h = rep(0,T);
vx = rep(0,T);
h[1] = 10000*exret[1]^2
vx[1] = (exret[1]-m0-(m1+beta*((gamma^0.5)/(gamma^2+beta^2)^0.5))*h[1])/h[1]
for ( i in (2:T) ) {
h[i] = (omega+a*(abs(h[i-1]*vx[i-1])-tau*h[i-1]*vx[i-1])^theta+b*(h[i-1]^theta))^(1/theta)
vx[i] = (exret[i]-phi*exret[i-1]-m0-(m1+beta*((gamma^0.5...
2001 Jul 09
1
Error plotting time series
Hi there,
when plotting a time series I got this error message:
Error in xy.coords(x, y, xlabel, ylabel, log) :
x and y lengths differ
In addition: Warning messages:
1: longer object length
is not a multiple of shorter object length in: vx.1[int.lr] + (-1) *
vx.2[int.rl]
vx.1[int.rl] and vx.2[int.rl] have the same length. Does anybody know
what the warning message means?
Thanks, Sven
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FA...
2019 Jun 26
1
[PATCH 2/2] drm/bochs: fix framebuffer setup.
...c
@@ -255,16 +255,21 @@ void bochs_hw_setformat(struct bochs_device *bochs,
}
void bochs_hw_setbase(struct bochs_device *bochs,
- int x, int y, u64 addr)
+ int x, int y, int fbwidth, u64 addr)
{
- unsigned long offset = (unsigned long)addr +
+ unsigned long offset;
+ unsigned int vx, vy;
+
+ bochs->stride = fbwidth * (bochs->bpp / 8);
+ offset = (unsigned long)addr +
y * bochs->stride +
x * (bochs->bpp / 8);
- int vy = offset / bochs->stride;
- int vx = (offset % bochs->stride) * 8 / bochs->bpp;
+ vy = offset / bochs->stride;
+ vx = (offset % boch...
2010 Feb 25
1
Accessing named elements of a vector
Dear R developers,
A great R feature is that elements of vectors, lists and dataframes can
have names:
vx = c(a=1, b=2)
lx = list(a=1, b=2)
Accessing element "a" of vx: vx['a']
Accessing element "a" of lx: lx[['a']] or lx$a
Might be a matter of taste, but I like the $ very much. Unfortunately,
vx$a is not
functional. Would it break existing compatibility if the $...
2008 May 09
1
Data frame row manipulation
...with 30 rows, I want C =
combine( A, B) having 50 rows.
Columns having matching names should be filled from both (all)
sources with suitable coercion, unmatched would get NA in rows whose
source does not have that column.
Q #2
------
Given data frame A having various columns including "vx".
I want to create a new data frame A2 that has 10 copies of each row
in A, all the same as the source row except vx=seq(1:10). The source
row value of vx is overwritten. A2 would have 10 times as many rows as A.
I have of course discarded idea of using of a for loop, but maybe
that is...
2007 Nov 05
1
klibc sparc trouble with gcc > 4.0
.....13e636c
--- /dev/null
+++ b/usr/klibc/libgcc/__clzdi2.c
@@ -0,0 +1,23 @@
+/*
+ * __clzdi2 - Returns the leading number of 0 bits in the argument
+ */
+
+#include <stdint.h>
+#include <stddef.h>
+
+uint64_t __clzdi2(uint64_t v)
+{
+ uint32_t vhi = (uint32_t) (v >> 32);
+ uint32_t vx;
+ int dp;
+
+ if (vhi) {
+ vx = vhi;
+ dp = 0;
+ } else {
+ vx = (uint32_t) v;
+ dp = 32;
+ }
+
+ return dp + __builtin_clz(vx);
+}
2011 Nov 21
1
quota.h
Hi
configure samba4 with --with-sys-quotas and check bin/config.log see this
message:
------------------------------------------
Checking for header sys/fs/vx/quota.h
==>
#include <stdio.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <stdlib.h>
#include <stddef.h>
#include <memory.h>
#include <string.h>
#include <strings.h>
#include <inttypes.h>
#include <stdint.h>
#include <unis...
2011 Oct 05
4
SPlus to R
...ncl:i]<-(1+(cci-1)*(lhood/lhood[lenl]))*ne.old2[ncl:i]
+ Ep0<-Epower(nc, d, ne, pc, alpha)
+ }
+ ne.old2<-ne
+ }
+ ne2<-ne
+ ne<-(ne1+ne2)/2
+ #cat(ccc*ne)
+ Ep1<-Epower(nc, d, ne, pc, alpha)
+ return(ne=ne, Ep=Ep1)
+ }
> ###
> vertex<-function(x,y)
+ { n<-length(x)
+ vx<-x[1]
+ vy<-y[1]
+ vp<-1
+ up<-T
+ for (i in (2:n))
+ { if (up)
+ { if (y[i-1] > y[i])
+ {vx<-c(vx,x[i-1])
+ vy<-c(vy,y[i-1])
+ vp<-c(vp,i-1)
+ up<-F
+ }
+ }
+ else
+ { if (y[i-1] < y[i]) up<-T
+ }
+ }
+ vx<-c(vx,x[n])
+ vy<-c(vy,y[n])
+ vp<-c(vp,n)
+ re...
2004 Feb 14
6
Beginner's question about t.test()
Dear All,
I am doing some exercise in statistics textbook on comparison of two
experimental means. Is it possible to use t.test() do t-test when I have
only two means, sample size, two standard deviations ? (no raw data).
Thanks.
Pramote
2002 Nov 16
1
using the function "expression" with "paste" in a plot
Hi,
I noticed that paste and expression in the following manner does not produce
the desired result.
vnames=c("pi","y","delta")
vx=vn=3
m=16
# mydata any matrix that takes for the following form
mydata=array(somedata,c(m,vn,vx))
# producing plots
for (j in 1:vx){
for (i in 1:vn)
{
plot(mydata, type="l", main=expression(paste("Effect of",
vnames[j],"on",vnames[i])), xlab="Lags (quarters)"...
2011 Oct 01
1
error using ddply to generate means
...error when I try to use ddply to generate means as follows:
fun3<-structure(list(sector = structure(list(gics_sector_name = c("Financials",
"Financials", "Materials", "Materials")), .Names = "gics_sector_name",
row.names = structure(c("UBSN VX Equity",
"LLOY LN Equity", "AI FP Equity", "AKE FP Equity"), .Dim = 4L), class
= "data.frame"),
bebitpcchg = c(-0.567449058550428, 0.99600643852127, NA,
-42.7587478692081), ticker = c("UBSN VX Equity", "LLOY LN Equity",
"...
2010 Jan 12
1
Unable to map the group
...Unix gid : 12613
Unix group: grp1
Group type: Domain Group
Comment : Domain Unix group
#
I have one filesystem 'fs2' exported as share 'share1' to the windows user.
Initially, filesystem doesn't have any file/folder created inside it.
# ls -l /vx/fs2/
total 0
#
If user 'usr1' mounts a share1 on windows machine and create a folder 'try'
inside it, then effective group permission goes to the unix group 'nogroup'.
# ls -l /vx/fs2/
total 0
drwxrwxr-x+ 2 usr1 nogroup 96 2010-01-12 05:18 try
#
Here, I am expecting that...
2006 Mar 15
0
Samba + Cups -> PPD Options problem - 1 attachment
...644 CX250_V1.PPD
M*E!01"U!9&]B93H@(C0N,R(-"BHE($%D;V)E(%-Y<W1E;7,@4&]S=%-C<FEP
M="A2*2!0<FEN=&5R($1E<V-R:7!T:6]N($9I;&4-"BHE($-R96%T960@0GD@
M4%!$0G5I;&1E<B!O;B!T:&4@,C,O,#@O,C`P-2P@5&EM93H@.3HU-#HR."!!
M30T**D9O<FUA=%9E<G-I;VXZ("(T+C,B#0HJ1FEL959E<G-I;VXZ("(Q+C`B
M#0HJ3&%N9W5A9V5%;F-O9&EN9SH@25-/3&%T:6XQ#0HJ3&%N9W5A9V5697)S
M:6]N.B!%;F=L:7-H#0HJ4')O9'5C=#H@(BA38VET97@@4W1A=&EO;BDB#0HJ
M4%-697)S:6]N.B`B*#,P,34N,3`R*2`P(@T**DUO9&5L3F%M93H@(D-214\@
M0U@R-3`@=C$N,"(-"BI3...
2006 Aug 10
2
Works...?! All blocked
Hello again,
now my xen works. But a strange thing:
Name ID Mem(MiB) VCPUs State Time(s)
Domain-0 0 2514 4 r----- 76.2
vx1 1 256 1 -b---- 6.1
vx2 2 256 1 -b---- 5.8
vx3 3 256 1 -b---- 5.3
vx4 4 256 1 -b---- 5.7
vx5...
2007 Oct 15
4
Get the last 3 chars of a string
I want to extract the last 3 letters of a string.
So far, I've done this:
> symbol = 'XYZ.VX"
> substr(symbol,nchar(symbol)-2,nchar(symbol))
[1] ".VX"
It works, but the code looks UGLY as hell. Am I missing something? Or
is this the way it's supposed to be?
Thanks,
Sergio
On 10/15/07, pintinho <diego at bpgomes.com> wrote:
>
> Hi everyone,
>
> Whe...
2005 Jan 04
1
scree plot
Hi!
Is there an easy way to add to the scree-plot labels to each value pertaining to the cumulative proportion of explained variance?
Thanks and a happy new year
Anne
----------------------------------------------------
Anne Piotet
Tel: +41 79 359 83 32 (mobile)
Email: anne.piotet@m-td.com
---------------------------------------------------
M-TD Modelling and Technology Development
PSE-C
2011 May 23
6
Reading Data from mle into excel?
...there,
I ran the following code:
vols=read.csv(file="C:/Documents and Settings/Hugh/My Documents/PhD/Swaption
vols.csv"
, header=TRUE, sep=",")
X<-ts(vols[,2])
#X
dcOU<-function(x,t,x0,theta,log=FALSE){
Ex<-theta[1]/theta[2]+(x0-theta[1]/theta[2])*exp(-theta[2]*t)
Vx<-theta[3]^2*(1-exp(-2*theta[2]*t))/(2*theta[2])
dnorm(x,mean=Ex,sd=sqrt(Vx),log=log)
}
OU.lik<-function(theta1,theta2,theta3){
n<-length(X)
dt<-deltat(X)
-sum(dcOU(X[2:n],dt,X[1:(n-1)],c(theta1,theta2,theta3),log=TRUE))
}
require(stats4)
require(sde)
set.seed(1)
#X<-sde.sim(model=&q...