Displaying 8 results from an estimated 8 matches for "xx0".
Did you mean:
0x0
2004 May 30
1
What's wrong with this simple code???
Hi, all
I can not figure this out, please have a look and help me out.
thank you!
Note: this is in SPLUS, not R.
I have following code
***********************************
modfit<-function(yir,yew, ft) {
n<-length(yew)
yew<-yew[1:(n-1)]
yy<-yir-ft
xx<-yew-ft
n<-length(xx)
xx0<-xx[2:n]
yy0 <-yy [2:n]
xx1<-xx[1:(n-1)]
fit <- garch(yy0~xx0 + xx1+var.in.mean, ~garch(1,1),cond.dist='ged')
summary(fit)
}
fs1hca<-modfit(s1hca.r, s1hca.ew, zfr)
**************error message is ***************
Problem in garch(yy0 ~ xx0 + xx1 + var.in.mean, ~ ..: Objec...
2001 Dec 18
1
Newbie problems with R and compiled C
I'm a beginer programming C and I have the following problem:
I have the following C-code file
#include <stdlib.h>
void gen(int *n, int *a, int *c, int *m, int *x0, int *x);
main(){
int nn = 31;
int aa = 3;
int cc = 0;
int mm = 31;
int xx0 = 9;
int xx[nn];
int i;
gen(&nn,&aa,&cc,&mm,&xx0,xx);
for (i = 0; i <= nn-1; i++)
printf("%d ,",xx[i]);
printf("\n %d",nn);
printf("\n %d",aa);
printf("\n %d",cc);
printf("\n %d",mm);
printf("\n %d&q...
2013 Sep 21
2
LDA quota rejection
...liver.log
mail_plugin_dir = /usr/local/lib/dovecot
mail_plugins = $mail_plugins mail_log sieve
postmaster_address = postmaster at mail.cgilfe.it
rejection_subject = Rifiutato: %s
rejection_reason = Messaggio a <%t> automaticamente rifiutato:%n%r
submission_host = 192.16X.XXX.XX0
}
If user over quota receive a messagge internally all is ok but if the
user receive a mail from external domains nothing to the sender is sentback.
Thanks in advance to all for possible help.
--
*Davide Marchi*
*T*eorema *F*errara *Srl*
Via Spronello, 7 - Ferrara - 44121
Tel. *0532783161* Fax. *...
2005 Oct 17
0
pdIdnot / logLik in glmmPQL
Dear R users,
I have been using the pdMat class "pdIdnot" (from the mgcv
package)instead of "pdIdent" to avoid overflow in GLMM fits with
the MASS package function glmmPQL, of the following form:
fit1 <- glmmPQL(fixed=y0~-1+xx0, random=list(gp=pdIdent(~-1+zz0)),
family=binomial) # vulnerable to overflow
fit2 <- glmmPQL(fixed=y0~-1+xx0, random=list(gp=pdIdnot(~-1+zz0)),
family=binomial) # overflow-proof
In instances in which fit1 does *not* lead to overflow, the result
someti...
2011 May 25
1
External special functions (SPECIALSXP)
Is it possible to define an external special function (SPECIALSXP)?
I'm trying to do some language-level work, and don't want my arguments
evaluated before they hit C.
It looks like the only way to define a SPECIALSXP is by using XX0 in
the `eval' field of R_FunTab; is there any way to make this applicable
to externally defined functions?
2006 Feb 02
0
Sip - no peer or user found on incoming call
...sip.conf
register => <MyUserName>:<MySecret>@sip.mydomain.com/<MyUserName>
[IN-UserName]
type=user
username=<MyUserName>
fromuser=<MyUserName>
fromdomain=<MyFromDomainName>
secret=<MySecret>
context=incoming-GW
;deny=0.0.0.0/0.0.0.0
;permit=xxx.xxx.xxx.xx0/32
;permit=xxx.xxx.xxx.xx1/32
;permit=xxx.xxx.xxx.xx2/32
;permit=xxx.xxx.xxx.xx3/32
;permit=xxx.xxx.xxx.xx4/32
;permit=xxx.xxx.xxx.xx5/32
host=sip.mydomain.com
;insecure=invite,port ;very
;nat=yes
;canreinvite=no
;qualify=1000
disallow=all
allow=g726
Thanks for any clue.
--
Daniel
2012 Sep 06
2
[Advice] CentOS6 + KVM + bonding + bridging
With the current talk on bonding, I have a few questions of my own.
I'm setting up a KVM host with CentOS 6.3 x86_64 on which I'd like to
attach the VMs to a bonded interface.
My target setup is one where two GigE NICs are bonded and then the KVM
bridge interface is attached to the bonded interface.
Initially I tried to use the balance-alb mode (mode6), but had little
luck (receiving
2020 Feb 09
2
[RFC PATCH] Add SHA1 support
...ace X[] with a bunch of
+ * X0, X1, etc. See the function body below...
+ */
+# define X(i) XX##i
+
+static void HASH_BLOCK_DATA_ORDER(SHA_CTX *c, const void *p, size_t num)
+{
+ const unsigned char *data = p;
+ register unsigned MD32_REG_T A, B, C, D, E, T, l;
+ unsigned MD32_REG_T XX0, XX1, XX2, XX3, XX4, XX5, XX6, XX7,
+ XX8, XX9, XX10, XX11, XX12, XX13, XX14, XX15;
+
+ A = c->h0;
+ B = c->h1;
+ C = c->h2;
+ D = c->h3;
+ E = c->h4;
+
+ for (;;) {
+ const union {
+ long one;
+ char little;
+ } is_endian...