search for: nout

Displaying 20 results from an estimated 48 matches for "nout".

Did you mean: not
2008 Apr 10
2
QP.solve, QPmat, constraint matrix, and positive definite
hello all, i'm trying to use QPmat, from the popbio package. it appears to be based on solve.QP and is intended for making a population projection matrix. QPmat asks for: nout, A time series of population vectors and C, C constraint matrix, (with two more vectors, b and nonzero). i believe the relevant code from QPmat is: function (nout, C, b, nonzero) { if (!"quadprog" %in% (.packages())) { library(quadprog) } n <- dim(nout) z <-...
2010 Jun 19
1
more powerful iconv
...); top_of_loop: inbuf = CHAR(si); inb = LENGTH(si); outbuf = cbuff.data; outb = cbuff.bufsize - 1; @@ -622,7 +623,7 @@ goto next_char; } - if(res != -1 && inb == 0) { + if(res != -1 && inb == 0 && !isRawx) { cetype_t ienc = CE_NATIVE; nout = cbuff.bufsize - 1 - outb; @@ -632,7 +633,12 @@ } SET_STRING_ELT(ans, i, mkCharLenCE(cbuff.data, nout, ienc)); } - else SET_STRING_ELT(ans, i, NA_STRING); + else if(!isRawx) SET_STRING_ELT(ans, i, NA_STRING); + else { + nout = cbuff.bufsize - 1 - outb; + ans = allocVector...
2023 Feb 23
1
Compilation Error when DEBUG_approx Toggled on in RISC-V
...'s C source codes, I think I have found a small bug. Can anyone please verify whether it is a real bug? The possible bug lies in the file `R-4.2.2/src/library/stats/src/approx.c` in function `R_approxfun` around line 148: #ifdef DEBUG_approx REprintf("R_approxfun(x,y, nxy = %.0f, .., nout = %.0f, method = %d, ...)", (double)nxy, (double)nout, Meth->kind); #endif However, there is no `Meth` defined in this function, causing a compilation error when `DEBUG_approx` is toggled on. The real `Meth` is actually defined in the `approx1` function, and the Meth seen here is proba...
2010 Feb 16
3
error : unused argument(s) when boxplot
Dear all, I am a total beginner in R, so sorry if this is the wrong place. I am using R 2.10.1 on a Mac (Mac OS 10.6.2). I have this small dataset : growth sugar 75 C 72 C 73 C 61 F 67 F 64 F 62 S 63 S I have no problem reading the table, or getting the summary, but if I try boxplot(growth~sugar, ylab="growth", xlab="sugar", data=Dataset), I have the following error :
2004 Apr 18
2
outliers using Random Forest
Hello, Does anybody know if the outscale option of randomForest yields the standarized version of the outlier measure for each case? or the results are only the raw values. Also I have notice that this measure presents very high variability. I mean if I repeat the experiment I am getting very different values for this measure and it is hard to flag the outliers. This does not happen with two other
2012 Mar 03
1
Sliding Window in R (solved)
Dear all, you can find below my solution for sliding a window. Please find below the code for the two alternatives and the benchmarks.     install.packages('caTools') require(caTools) do_sliding_for_a_window_duty_cycle <- function(DataToAnalyse,  windowSize) {   data<-DataToAnalyse   out <- numeric()   elements<- numeric()   if (length(data[,1]) >= windowSize){       for
2005 Sep 20
3
annotating an axis in bwplot (lattice)
...------>8--- require(Hmisc) age <- sample(1:100, 1000, replace = TRUE) sex <- gl(2, 8, 1000, c("Male", "Female")) grp <- gl(4, 6, 1000, letters[1:4]) bwplot(grp ~ age | sex, aspect = 0.5, box.ratio = 2, panel = function(x, y, ...) { panel.bpplot(x, y, nout = 0.01, probs = seq(0.05, 0.45, 0.05)) nage <- tapply(age, grp, length) panel.text(rep(0, length(x)), seq(along = x), labels = nage) }) --8<---------------cut here---------------end--------------->8--- I have two problems here: 1. place the sample size as a note i...
2001 Jul 20
0
bug in predict.nnet?
Hi all I may have found a little problem in the code of predict.nnet, that comes up only if you have NA's in your dataset: the present code: z <- matrix(NA, length(keep), nout, dimnames = list(rn, ^^^^^^^^^^^^ dimnames(object$fitted)[[2]])) should be (at least if I understand things correctly) z <- matrix(NA, length(rn), nout, dimnames = list(rn, ^^^^^^^^^^ dimnames(object$f...
2007 Jul 13
1
ldap/pam authentication
...when for example using a shell. Using ldapsam with an existing ldap setup is quite a pain and I'd rather avoid it (I have tried but yet did not succeed). I tried using pam, which did work, but only for plaintext passwords. Windows by default doesn't allow plaintext, so this would lock nout windows users unless windows is changed to use plaintext. There are many systems which can use ldap for authentication by just providing a server and distinguished name (dc=...) and such. I was hoping samba would be able to do just that, leaving out any other fancy things. Thank you, Jeroen
2016 Sep 14
2
Exporting keytab for SPN failure
...rt the user, but not the SPN. Are those expected, or have I done something wrong and used incorrect algorithms somewhere? I recall reading that DES is not secure enough and that AES-256 (I think I read this during TLS enablement) is what should be used. > I get the same behaviour here. If i do nout use the FQDN and only the hostname without the domain part the aes keys are included. In your case --principal HTTP/intranet. So, now I’m a little more confused. I’ve added the SPN to the user without the realm part, which succeeds. I listed it to verify, and it’s there (sanitized here): samba-...
2008 Nov 26
1
Finding Stopping time
...s=sum(y) return(s) } psum <- function(p,q) {z <- NULL for(l in p:q) { z[l-p+1] <- x[l]^2} ps <- sum(z) return(ps) } smm <- NULL sm <- NULL N <- NULL Nout <- NULL T <- NULL k<-0 x <- rnorm(100,theta1,theta1) for(i in 1:length(x)) { sm[i] <- psum(1,i) T[i] <- ((i/2)*log(theta1/theta2))+(((theta2-theta1)/(2*theta1*theta2))*sm[i])-(i*(theta2-theta1)/2) if (T[i]<=b | T[i]>=a){N[1]<-i...
2016 Sep 14
2
Exporting keytab for SPN failure
...ser, but not the SPN. Are those expected, or have I done something wrong and used incorrect algorithms somewhere? I recall reading that DES is not secure enough and that AES-256 (I think I read this during TLS enablement) is what should be used. >>> I get the same behaviour here. If i do nout use the FQDN and only the hostname without the domain part the aes keys are included. In your case --principal HTTP/intranet. >> >> So, now I’m a little more confused. I’ve added the SPN to the user without the realm part, which succeeds. I listed it to verify, and it’s there (saniti...
2001 Nov 26
1
predict.nnet (PR#1181)
Full_Name: Jeff Schwarz Version: R1.3.1 OS: Windows 2000 Submission from: (NULL) (129.22.170.115) Error message (using predict and predict.nnet) > predict (smalltest, smallx[-jj,]) Error in matrix(NA, length(keep), nout, dimnames = list(rn, dimnames(object$fitted)[[2]])) : length of dimnames[1] not equal to array extent *** all relevant code and data source is given below *** I have successfully built an object of type nnet using... nnet.formula(formula = Q65 ~ ., data = smallx, size = 2, rang = 1,...
2016 Sep 14
2
Exporting keytab for SPN failure
...not the SPN. Are those expected, or have I done something wrong and used incorrect algorithms somewhere? I recall reading that DES is not secure enough and that AES-256 (I think I read this during TLS enablement) is what should be used. >>>>> I get the same behaviour here. If i do nout use the FQDN and only the hostname without the domain part the aes keys are included. In your case --principal HTTP/intranet. >>>> >>>> So, now I’m a little more confused. I’ve added the SPN to the user without the realm part, which succeeds. I listed it to verify, and it...
2016 Sep 16
6
Exporting keytab for SPN failure
...mewhere? I recall reading that >>>>>>>>>> DES is not secure enough and that AES-256 (I think I read this >>>>>>>>>> during TLS enablement) is what should be used. >>>>>>>>> I get the same behaviour here. If i do nout use the FQDN and >>>>>>>>> only the hostname without the domain part the aes keys are >>>>>>>>> included. In your case --principal HTTP/intranet. >>>>>>>> So, now I’m a little more confused. I’ve added the SPN to the &gt...
2016 Sep 14
0
Exporting keytab for SPN failure
...t the SPN. Are those > expected, or have I done something wrong and used incorrect algorithms > somewhere? I recall reading that DES is not secure enough and that > AES-256 (I think I read this during TLS enablement) is what should be > used. I get the same behaviour here. If i do nout use the FQDN and only the hostname without the domain part the aes keys are included. In your case --principal HTTP/intranet. The encryption methods used can be controlled with net ads enctypes. If i run (after kinit Administrator) net ads enctypes list dc1$ i get 'dc1$' uses "msDS...
2016 Sep 15
3
Exporting keytab for SPN failure
...incorrect algorithms somewhere? I recall reading that >>>>>>>> DES is not secure enough and that AES-256 (I think I read this >>>>>>>> during TLS enablement) is what should be used. >>>>>>> I get the same behaviour here. If i do nout use the FQDN and >>>>>>> only the hostname without the domain part the aes keys are >>>>>>> included. In your case --principal HTTP/intranet. >>>>>> So, now I’m a little more confused. I’ve added the SPN to the >>>>>> us...
2016 Sep 14
0
Exporting keytab for SPN failure
...ted, or have I done something wrong and used incorrect >>> algorithms somewhere? I recall reading that DES is not secure >>> enough and that AES-256 (I think I read this during TLS enablement) >>> is what should be used. >> I get the same behaviour here. If i do nout use the FQDN and only the >> hostname without the domain part the aes keys are included. In your >> case --principal HTTP/intranet. > > So, now I’m a little more confused. I’ve added the SPN to the user > without the realm part, which succeeds. I listed it to verify, and...
2010 Jul 02
2
Lost buttons at page bottom in wine config!
I am using 1.1.38 with Fedora 13, which I am new to and its a new set up for me. It worked ok at first and I installed my two accounts programs (which also have issues I'll bring up in the application section). I added these with wine config, hunting down the files and they went in ok and more or less run. Then I went to install AD-muncher by just clicking on the down loaded file and I was
2016 Sep 14
5
Exporting keytab for SPN failure
> On Sep 14, 2016, at 10:44 AM, Achim Gottinger via samba <samba at lists.samba.org> wrote: > > > > Am 14.09.2016 um 05:53 schrieb Michael A Weber via samba: >> Experts— >> >> I’m attempting to export a keytab for a created SPN on the AD DC machine but I’m receiving an error: >> >> ERROR(runtime): uncaught exception - Key table entry not