Displaying 6 results from an estimated 6 matches for "m45".
Did you mean:
45
2016 May 10
1
recursion problem using do.call(rbind, list(..,<S4>,..))
...ing the Matrix package at all:
MM <- setClass("mmatrix", contains="matrix")
setMethod("rbind2", signature(x="mmatrix", y="mmatrix"),
function(x,y) as(base::rbind(unclass(x), unclass(y)), "mmatrix"))
(m5 <- MM(diag(5)))
m45 <- MM(matrix(1:20, 4,5))
rbind(m5, m45) # fine
## fine with 400 :
mL.4c <- replicate(400, m45, simplify=FALSE)
mmm4 <- do.call(rbind, mL.4c)
stopifnot(is(mmm4, "mmatrix"), dim(mmm4) == c(1600L, 5L))
## not ok with 410 :
mL.410 <- replicate(410, m45, simplify=FAL...
2010 May 19
8
Generating all possible models from full model
...nb(mantas~cosmonth+sinmonth,data=mydata))
m35<-glm.convert(glm.nb(mantas~cosmonth+coslunar,data=mydata))
m36<-glm.convert(glm.nb(mantas~cosmonth+sinlunar,data=mydata))
m37<-glm.convert(glm.nb(mantas~cosmonth+plankton,data=mydata)) #Interaction term? Plankton may vary by season
m45<-glm.convert(glm.nb(mantas~sinmonth+coslunar, data=mydata))
m46<-glm.convert(glm.nb(mantas~sinmonth+sinlunar, data=mydata))
m47<-glm.convert(glm.nb(mantas~sinmonth+plankton, data=mydata)) #Interaction term? Plankton may vary by season
m56<-glm.convert(glm.nb(mantas~coslunar+si...
2008 Feb 28
7
[PATCH 0/5] RFC: ia64/pv_ops: ia64 intrinsics paravirtualization
Hi. Thank you for comments on asm code paravirtualization.
Its direction is getting clear. Although it hasn't been finished yet,
I'd like to start discussion on ia64 intrinsics paravirtualization.
This patch set is just for discussion so that it is a subset of
xen Linux/ia64 domU paravirtualization, not self complete.
You can get the full patched tree by typing
git clone
2008 Feb 28
7
[PATCH 0/5] RFC: ia64/pv_ops: ia64 intrinsics paravirtualization
Hi. Thank you for comments on asm code paravirtualization.
Its direction is getting clear. Although it hasn't been finished yet,
I'd like to start discussion on ia64 intrinsics paravirtualization.
This patch set is just for discussion so that it is a subset of
xen Linux/ia64 domU paravirtualization, not self complete.
You can get the full patched tree by typing
git clone
2008 Mar 05
51
[PATCH 00/50] ia64/xen take 3: ia64/xen domU paravirtualization
Hi. This patchset implements xen/ia64 domU support.
Qing He and Eddie Dong also has been woring on pv_ops so that
I want to discuss before going further and avoid duplicated work.
I suppose that Eddie will also post his own patch. So reviewing both
patches, we can reach to better pv_ops interface.
- I didn't changed the ia64 intrinsic paravirtulization abi from
the last post. Presumably it
2008 Mar 05
51
[PATCH 00/50] ia64/xen take 3: ia64/xen domU paravirtualization
Hi. This patchset implements xen/ia64 domU support.
Qing He and Eddie Dong also has been woring on pv_ops so that
I want to discuss before going further and avoid duplicated work.
I suppose that Eddie will also post his own patch. So reviewing both
patches, we can reach to better pv_ops interface.
- I didn't changed the ia64 intrinsic paravirtulization abi from
the last post. Presumably it