search for: oorder

Displaying 3 results from an estimated 3 matches for "oorder".

Did you mean: order
2002 Jun 27
1
Building from a source-code library under windows
...case DLL_PROCESS_ATTACH: /* initialization code here */ break; case DLL_PROCESS_DETACH: /* clean-up code here */ break; } return(TRUE); } #endif void nlme_two_comp_zero_CI_lag (long int *norow, double *maxoorder, double *OMAT, long int *ndrow, double *maxdorder, double *DMAT, long int *logparam, long int *logresp, double *Resp) { long int i, j, No = *norow, Nd = *ndrow, LogParam = *logparam, LogResp = *logresp; double Tdiff, a, b, k21, origReset, counterDose, id, T1, constReseti, constRese...
2011 Jun 07
1
trunk between 2 servers
...h centos and asterisk and the sip in configured we can do the external and internal call without issue Now I have installed the same centos and asterisk 1.4 in second computer in the same network. My question if there is any possibility to create a trunk between the first and the second PC in oorder do the inbound and outbound calls Thanks and Regards -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.digium.com/pipermail/asterisk-users/attachments/20110607/13beb475/attachment.htm>
2004 Nov 24
1
what does order() stand for in an lme formula?
...----------- ## # what does order() do in an lme formula? ## # prep data y1 <- c(rnorm(25, 35, sd=5), rnorm(17, 55, sd=4)) # this is a line paralle to x-axis (slope=0) with noise x1 <- c(sample(1:25, 25, replace=F), sample(1:17, 17, replace=F)) # scramble the x, so that they do not appear in-oorder f1 <- c(rep("A",25), rep("B", 17)) dat1 <- data.frame(y1, x1, f1) x1 <- NULL y1 <- NULL f1 <- NULL # load libraries require(nlme) require(gmodels) # for the ci() # fit model with and w/o order() dat1.lm.1 <- lm(y1 ~ x1 + f1 -1, data=dat1) dat1.lm.2 <-...