search for: 28x

Displaying 14 results from an estimated 14 matches for "28x".

Did you mean: 28
2009 May 08
1
if ((x >.2 || x<(-.2)) && (col(x)!=row(x))) {x=x[,-col(x)]}
...mns. Also, I realized that I actually need to pull out the row that is associated with that variable as well, and so perhaps the section inside {} needs to be something like: {x=x[-col(x),-col(x)] Any idea on how to do this? Thank you. -- View this message in context: http://www.nabble.com/if-%28%28x-%3E.2-%7C%7C-x%3C%28-.2%29%29----%28col%28x%29%21%3Drow%28x%29%29%29-%7Bx%3Dx-%2C-col%28x%29-%7D-tp23440419p23440419.html Sent from the R help mailing list archive at Nabble.com.
2008 Jul 09
5
Summary Stats (not summary(x))
...Deviation, Kurtosis. I'm positive that I came across a function that did this (possibly in Rmetrics), but now I can't find it. I lost it in the endless mass of R functions. Any help would be appreciated. -- View this message in context: http://www.nabble.com/Summary-Stats-%28not-summary%28x%29%29-tp18363275p18363275.html Sent from the R help mailing list archive at Nabble.com.
2009 Apr 29
3
mode(x) <- "double"
...in numeric otherwise I can't do my analysis. This is what i get: mode (data) <- "double" Error in eval(expr, envir, enclos) : (list) object cannot be coerced to type 'double' > Thanks a lot!!! Alessandra -- View this message in context: http://www.nabble.com/mode%28x%29-%3C--%22double%22-tp23296727p23296727.html Sent from the R help mailing list archive at Nabble.com.
2009 Nov 04
4
unexpected results in comparison (x == y)
...ULL > attributes(ZZ[5]) NULL Which is ok, except for ZZ[4] == ZZ[5]. Can someone please give me an advice where to look? In real world situations the original vector (X) will contain upto 100 entries. -- View this message in context: http://old.nabble.com/unexpected-results-in-comparison-%28x-%3D%3D-y%29-tp26195749p26195749.html Sent from the R help mailing list archive at Nabble.com.
2002 Nov 08
2
ext3 and secure deletion of files and file slack
...with v2.0 all secure_delete utilities work in secure mode (38 special passes). To lower the security and make it faster, you may add -l (one random pass, on 0xff pass) or -ll (one 0xff pass) to the parameters. The secure overwrite mode works that way: 1x overwrite with 0xff 5x random passes 28x overwriting with special values to make the recovery from MFM and RLL encoded harddisks hard/impossible - see Gutmann's paper on that which is also included. 5x random passes __________________________________________________ Do You Yahoo!? Everything you'll ever need on one web page from...
2020 Jul 10
2
Understand alias-analysis results
...w.pythontutor.com/cpp.html#code=void%20MUSTALIAS%28void%20*p,%20void%20*q%29%20%7B%7D%0A%0Aint%20main%28%29%7B%0A%0A%20%20int%20**a,%20*b,%20*x%20,c%3B%0A%20%20c%20%3D%2010%3B%0A%20%20a%20%3D%20%26b%3B%0A%20%20b%20%3D%20%26c%3B%0A%20%20x%20%3D%20*a%3B%0A%20%20int%20y%20%3D%20*x%3B%0A%20%20MUSTALIAS%28x,%26c%29%3B%0A%20%20MUSTALIAS%28x,b%29%3B%0A%20%20return%200%3B%0A%7D&curInstr=12&mode=display&origin=opt-frontend.js&py=cpp&rawInputLstJSON=%5B%5D Note (in step 13 of 13) how `y` does not alias (it is just an `int` itself) anything (agreeing with NoAlias results you're get...
2008 Nov 21
1
Equivalent to apply(x[,2:5],1,sum) for dataframe
What's the most correct way of doing the equivalent to apply(x[,2:5],1,sum) if x is dataframe in which the only numeric fields are in columns 2:5 ? (using apply returns a character vector) Thanks Agus -- Dr. Agustin Lobo Institut de Ciencies de la Terra "Jaume Almera" (CSIC) LLuis Sole Sabaris s/n 08028 Barcelona Spain Tel. 34 934095410 Fax. 34 934110012 email: Agustin.Lobo at
2009 Mar 13
1
cor.test(x,y)
Hi, I am not sure which kind of test is applied to the data if you use cor.test(x, y) ? Is it an unpaired t-Test? Regards -- View this message in context: http://www.nabble.com/cor.test%28x%2Cy%29-tp22492993p22492993.html Sent from the R help mailing list archive at Nabble.com.
2008 Jan 04
1
PCA error: svd(x, nu=0) infinite or missing values
...C:\\Documents and Settings\\...\\matrix.txt', header=T) ot.pca = prcomp(ot, scale.=T, na.omit)#this is as far as I got. I have also tried princomp but I get a very similar error message I use Windows, and R version 2.6.0. -- View this message in context: http://www.nabble.com/PCA-error%3A-svd%28x%2C-nu%3D0%29-infinite-or-missing-values-tp14627432p14627432.html Sent from the R help mailing list archive at Nabble.com.
2004 Aug 06
1
libspeex/SSE Intrinsics with GCC 3.3.x
On Fri, Apr 02, 2004 at 12:33:13AM -0500, Jean-Marc Valin wrote: > Do you have any sample code for that? Also, how do you tell autoconf to > append '-msse' without running into problems when CFLAGS is not set (and > usually defaults to -g -O2, but not always). Example patch attached. It only tries if the use passes --enable-sse; testing by target arch as Aron suggested is
2020 Jul 09
2
Understand alias-analysis results
Hi again! Replying in chronological order: > On Thu, Jul 9, 2020 at 6:51 PM Shuai Wang <wangshuai901 at gmail.com > <mailto:wangshuai901 at gmail.com>> wrote: > > Hey Matt, > > That's awesome. Thank you very much for all the information and > clarification! Just a few follow up questions. Could you kindly shed > some lights on it? Thank
2009 Mar 08
2
prcomp(X,center=F) ??
I do not understand, from a PCA point of view, the option center=F of prcomp() According to the help page, the calculation in prcomp() "is done by a singular value decomposition of the (centered and possibly scaled) data matrix, not by using eigen on the covariance matrix" (as it's done by princomp()) . "This is generally the preferred method for numerical accuracy"
2010 Dec 15
5
Solution to differential equation
Hello, I am trying to find the analytical solution to this differential equation dR/dt = k1*(R^k2)*(1-(R/Rmax)); R(0) = Ro k1 and k2 are parameters that need to fitted, while Ro and Rmax are the baseline and max value (which can be fitted or fixed). The response (R) increases initially at an exponential rate governed by the rate constants k1 and k2. Response has a S-shaped curve as a function
2009 Jul 23
1
[PATCH server] changes required for fedora rawhide inclusion.
...at EPhMKTOlr9y9P(N?YP(|S+C+gMTI39(&e!; zgs0;)zs`z*8KT2dm6*7GD-AM1D1|E~<kUB09!^~~KGU}0l#&vNm%j$Lj{8k#oSCk8 znmLz3qe9+LeE}^9Ru(v+g9UPq3XJF#4KFFWWk9dO656$IukJ2^JjJDjy^6arGa#*9 zao4q%bPLu6Dx@}w?|TKd2U}o1{VBk)q?dSB-%Wf7sq_ZI;%cJKM{o1h7hEO}IkKn_ zBPRT!;!KR9CgL(5wV6xVjF-ZF99n~ubB1s~3u_{NoG-m$A!28x{AqBtKTw}0qQZvs z at Js2Z$d6Xo;%Y at v`7ukVi6lpBl;sDSKXNfGt at YcH*xo76vMI6jE#6u_6z6VC3x`K5 zpA=#piHk`rcKN{2{H17D`QgrGrF!`)BW^2RBH#B~iPB)L3$qp+YCc;vpcZBy#3wFE zO0mt0?25}yp(D)vIG7&mT{n5bNyW!a4L(|`&1}*g_V09D at _yL74b#g4SSGYAQ0LQ! zh$TVcve&b)KQK(xgyo>apbhis!^I5~tM>&0!Qrgh8w%o7P~#...