Displaying 3 results from an estimated 3 matches for "jumptest".
2012 Jul 19
1
Change log(J) to log(J+1) to stop log(0) from occurring in harModel
...m; model$h = h; model$type = "HARRVJ";
model$dates = alldates[(maxp+h):n];
class(model) = c("harModel","lm");
return( model )
}#End HAR-RV-J if cond
if( type == "HARRVCJ" ){
# Are the jumps significant? if not set to zero:
if( jumptest=="ABDJumptest" ){
TQ = apply.daily(data, TQfun);
J = J[,1];
teststats = ABDJumptest(RV=RM1,BPV=RM2,TQ=TQ );
}else{ jtest = match.fun(jumptest); teststats = jtest(data,...) }
Jindicators = teststats > qnorm(1-alpha);
J[!Jindicators] = 0;
#...
2007 May 01
1
Using pxelinux mboot.c32 to multiboot Solaris
...tial RAM disk aka the miniroot.
Simply put, I'm trying to convert the following pxegrub menu.lst entry to a
pxelinux.cfg mboot.c32 entry. Here's the pxegrub menu.lst entry:
title PXEGrub x86 Jumpstart
kernel /solaris/multiboot.sol10 kernel/unix -v -m verbose install
http://64.104.195.120/jumptest/test1.tar -B
install_media=172.16.254.129:/export/install
module /solaris/x86.miniroot.sol10
And here's my attempt to convert the above to pxelinux multiboot:
LABEL JUMPSTART
MENU LABEL ^Solaris Jumpstart
kernel mboot.c32
APPEND /solaris/multiboot.sol10 kernel/unix -v...
2012 Jul 19
1
Switching log(J) to log(J+1) to avoid log(0) in HAR-RVJ model
...$h = h; model$type = "HARRVJ";
model$dates = alldates[(maxp+h):n];
class(model) = c("harModel","lm");
return( model )
}#End HAR-RV-J if cond
and this
if( type == "HARRVCJ" ){
# Are the jumps significant? if not set to zero:
if( jumptest=="ABDJumptest" ){
TQ = apply.daily(data, TQfun);
J = J[,1];
teststats = ABDJumptest(RV=RM1,BPV=RM2,TQ=TQ );
}else{ jtest = match.fun(jumptest); teststats = jtest(data,...) }
Jindicators = teststats > qnorm(1-alpha);
*J[!Jindicators] = 0;*
to...