Displaying 2 results from an estimated 2 matches for "yypos".
Did you mean:
typos
2008 Jan 12
1
[LLVMdev] Labels
...0
@yyvals = global i32* null
@yyval = global i32* null
@yythunkpos = global i32 0
@yythunkslen = global i32 0
@yythunks = global %struct.yythunk* null
@yytextmax = global i32 0
@yyend = global i32 0
@yybegin = global i32 0
@yytextlen = global i32 0
@yytext = global i8* null
@yylimit = global i32 0
@yypos = global i32 0
@yybuflen = global i32 0
@stdin = external global %struct._IO_FILE*
@yy = weak global i32 0
define i32 @yyrefill()
{
entry:
%tmp842 = load i32* @yybuflen, align 4
%tmp943 = load i32* @yypos, align 4
%tmp1044 = sub i32 %tmp842, %tmp943
%tmp1145 = icmp slt i32 %tmp1044, 512
br i1...
2009 Jun 23
0
looping problem
...s iteration.
rand_skewt <- function(dt,degf,n)
{ t1 <- length(degf)
rand <- matrix(dt,nrow=n)
xi <- colMeans(dt)
Omega <- var(dt)
alpha <- skew(dt,na.rm = TRUE)
for (i in 1:t1)
{ rand[i] <- rmst(n,xi, Omega, alpha, df=degf[i])[1:n,1:2] }
rand
}
dt <- yypos[1:10,]; degf <- c(4,4.5,5,6); n <- 5
> yypos[1:10,]
[,1] [,2]
[1,] 49.7 23.4
[2,] 141.6 136.8
[3,] 119.7 141.5
[4,] 27.2 47.2
[5,] 56.0 20.6
[6,] 58.1 62.4
[7,] 59.2 28.2
[8,] 22.8 22.4
[9,] 28.0 48.6
[10,] 69.9 85.2
rand_skewt(dt,degf,n)
this is the o...