search for: csg

Displaying 20 results from an estimated 33 matches for "csg".

Did you mean: cs
2009 Nov 18
0
Optimal parameters for Savitzky-Golay smoothing filter (loop)
...a Savitzky-Golay smoothing filter (http://tolstoy.newcastle.edu.au/R/help/04/02/0385.html) for variables in my dataset, dim (272:90). I managed to run the code for individual variables in the dataset and then combine the results into a single dataset. My novice attempt at this task is shown below csg<-NULL for (i in 1:ncol(data.all)) { sg<-sav.gol(data.all[,i],1,forder=2,dorder=0) csg[i]<-data.frame(sg) dat<-do.call(cbind,(csg)) } I eventually plan to test whether there is a significant difference between the original noisy dataset (data.all) and the S...
2007 Jul 14
10
[Bug 1340] New: Support for Camellia block cipher to OpenSSH-portable.
...Product: Portable OpenSSH Version: -current Platform: All OS/Version: All Status: NEW Severity: enhancement Priority: P2 Component: Miscellaneous AssignedTo: bitbucket at mindrot.org ReportedBy: yanagisawa at csg.is.titech.ac.jp Created an attachment (id=1327) --> (http://bugzilla.mindrot.org/attachment.cgi?id=1327) A patch for supporting Camellia to OpenSSH-portable. I would like to add support for the Camellia block cipher to OpenSSH-portable. Camellia is one of the selected block cipher by New Eu...
2005 Jan 24
1
lookups and joins
...lt column, ie my lookup table. stcl = read.csv("stockclass.csv") stockclass = as.vector(stcl$stock_class) # This gives me what appears to be a dictionary or map names(stockclass) = as.vector(stcl$stock_group) getstockclass = function(stock_group) { try(stockclass[[stock_group]], TRUE) } csg$stk_class=factor(sapply(csg$stock_group, getstockclass)) I need the try since if there is a missing value I get an exception. I also tried something along the lines of (from memory): getstockclass = function(stock_group) { stcl[which(stcl$stock_group == stock_group),]$stock_class } These work b...
2004 Jul 21
3
Fatal: Unknown userdb type 'pgsql'
Hello, I'm trying to use postgres authentication with dovecot on a linux system running Fedora Core 2. Installation of dovecot was done by installing the rpm included in the fedora distribution ("yum install dovecot"). from /etc/dovecot.conf auth_userdb = pgsql /etc/dovecot-pgsql.conf auth_passdb = pgsql /etc/dovecot-pgsql.conf but the logs tell me: dovecot: Jul 21 19:28:39 Info:
2003 Aug 03
0
RTP / SIP routing issues
Greetings. I am working on setting up an asterisk server (SIP only) and am running into a few issues getting RTP working correctly. Here is our setup: SIP Client (Public IP) <---> Asterisk Server (Public IP/Private IP) <--> Nortel CSG (Internal IP) <--> PSTN So far we have SIP to SIP working through Asterisk without any problems (using various sip clients). When I call from the PSTN to the CSG, here is what I see in the asterisk console: -- Executing Dial("SIP/10.10.100.40:5060", "SIP/mgamble") i...
2006 Aug 22
2
HPUX net ads join
...c/samba/3.0.23/bin/net ads user -U jjurich_wa works fine as well. root@serv00 # /fs/exec/samba/3.0.23/bin/net -V Version 3.0.23b Any one else run into this? It is odd that the Error message is NT_STATUS_OK me thinks. Regards, JJ -- -------------------------------------------------- JJ Urich CSG Director The University of Iowa Phone 319-335-0750 Email: jjurich at divms dot uiowa dot edu --------------------------------------------------
2008 Feb 11
1
[PATCH] virtio_net: Fix oops on early interrupts - introduced by virtio reset code
...0 00000000001132bc 000000000f977e08 000000000f977dd8 Krnl Code: 000000000047597c: e31040300004 lg %r1,48(%r4) 0000000000475982: b9040001 lgr %r0,%r1 0000000000475986: b9810003 ogr %r0,%r3 >000000000047598a: eb1040300030 csg %r1,%r0,48(%r4) 0000000000475990: a744fff9 brc 4,475982 0000000000475994: a7110001 tmll %r1,1 0000000000475998: a7840009 brc 8,4759aa 000000000047599c: e340b0b80004 lg %r4,184(%r11) Call Trace: ([&lt...
2008 Feb 11
1
[PATCH] virtio_net: Fix oops on early interrupts - introduced by virtio reset code
...0 00000000001132bc 000000000f977e08 000000000f977dd8 Krnl Code: 000000000047597c: e31040300004 lg %r1,48(%r4) 0000000000475982: b9040001 lgr %r0,%r1 0000000000475986: b9810003 ogr %r0,%r3 >000000000047598a: eb1040300030 csg %r1,%r0,48(%r4) 0000000000475990: a744fff9 brc 4,475982 0000000000475994: a7110001 tmll %r1,1 0000000000475998: a7840009 brc 8,4759aa 000000000047599c: e340b0b80004 lg %r4,184(%r11) Call Trace: ([&lt...
2012 Sep 06
1
[LLVMdev] Error running spec benchmark with FMA4 on X86
...Samples: 8960 Pixels: 1280 Samples: 47360 ^ 0051: Rays: 8960 Saved: 0 Max Level: 1/5 Rays: 47360 Saved: 0 Max Level: 1/5 ^ 0055: CSG Intersection 232960 0 Box 47360 0 ^ 0056: Plane 537600 510304 Cone/Cylinder 1515520 0 ^ ... -- * Anitha* ----...
2008 Apr 07
1
Width of text displayed in R
...for Linux (amd 64). It runs well, but R thinks that it only has 80 characters or so of screen width. I log on with Putty to the box and can stretch it as large as I want. Is there a simple way to tell R to use more screen width when displaying? From whatami: OS RELEASE : Linux SLES9 CSG 3.0.1 KERNEL ID : 2.6.5-7.283-smp Thanks, Josh Josh Kalish Credit Suisse Please follow the attached hyperlink to an important disclosure: http://www.credit-suisse.com/legal/marketcommentary ============================================================================== Please acc...
2007 Jul 09
1
The Camellia block cipher for OpenSSH 4.6p1.
...nagis0/text/camellia/openssh-4.6p1-0.2.patch in http://www.is.titech.ac.jp/~yanagis0/text/camellia-e.html. I hope you will enjoy this patch and OpenSSH will use it. Thank you, Yoshisato YANAGISAWA. -- ------------------------------------------------------- Yoshisato YANAGISAWA <yanagisawa at csg.is.titech.ac.jp> Dept. of Mathematical and Computing Sciences, Graduate School of Information Science and Engineering, Tokyo Institute of Technology. /* If you are an *BSD user, let's join http://bsdstats.org/ */
2005 May 27
1
Preserving uid/gid on remote machine with non-root permission
...CH-8092 Zurich | |--------------------------------------------------------------------| | Phone: +41-44-632-7540 | Room: ETZ H83, Gloriastrasse 35 | | Fax: +41-44-632-1035 | E-Mail: mailto:hausheer@tik.ee.ethz.ch | | Mobile: +41-79-336-4076 | WWW: http://www.csg.ethz.ch/~hausheer/ | +--------------------------------------------------------------------+
1999 Sep 20
0
My question on creating binaries
...I guess I'm yer man as far as this is concerned, as srio5 is managed by me. I presume you've spoken to Colin Edwards regarding why; the when should be by Mid-October if poss., although if you need me I am on leave the first two weeks, and between now and then I've got such things as CSG to take up some of my time. The final move of BRS from the Vax was due to take place early-mid October; how much this influences the web server installation I'm not sure. JF -----Original Message----- From: Simon Dray Sent: Monday, September 20, 1999 10:40 AM To: john fairey Subject: Ap...
2013 Feb 07
1
removing local policies
Hello Everyone We are upgrading to Samba4 from Samba 3.x, we got a fully functional domain over the last 4 years and we are trying to do our migration as smooth as possible. I have migrated, users, machines and everything to the new samba4 domain (not in production yet), however when i log and old machine from the samba 3.x domain to the samba 4 domains, the local policy still applies, i suppose
2013 Apr 17
1
samba4 internal dns update
Hello Last week we changed our ip range, every computer was shutdown and everything is working, but we are still getting the old ip address on the dns, my version is samba 4.0.3 and i am using internal dns This is the actual smb.conf [global] workgroup = MYCOMPANY realm = MYCOMPANY.COM.CO netbios name = DOMINIO server role = active directory domain controller idmap_ldb:use rfc2307 = yes
2012 Jun 03
0
Bug in truncgof package?
...list > https://stat.ethz.ch/mailman/listinfo/r-help > PLEASE do read the posting guide http://www.R-project.org/posting-guide.html > and provide commented, minimal, self-contained, reproducible code. > -- -- Andreea Picu Communication Systems Research Group, ETH Zurich Web: http://www.csg.ethz.ch/people/apicu Office: ETZ G 96, Gloriastrasse 35, 8092 Zurich Phone: +41 44 632 6894 Fax: +41 44 632 1035
2010 Jun 25
2
i want create script
Hi R community, I want to create a script which will take the .csv table as input and do some prediction and output should be returned to some file.Inputs is exel sheet containing some tables of data.out should be table of predicted data.Will some one help me in this regards... Thanks in advance. I am using Windows R.Please advise proccedure to create Rscript. Regards --------- Vijay Research
2014 Jan 04
0
Problems with blazer_usb. Driver will not shut down my UPS
...C801RkueQTHtzb9IzGugXUnUBQkCRhJz > p+vjMokWNHXl3Rb7ygaPIcVvMp17iSiKW4PotoO9wQvru6d4IIlx6XeXjY7CkOnF > +YXGQdYmSLVn35+VdyhcNMarQRgPaEozQUX65PmllCapMX0TGWsDNdfTvNVQFw+N > SaSoiQtCmtI+4aBEgvspyCQo3cRElDYPukdIcdW/ywdm2JzxPkQy+AVN/4ySAeVD > tOsoYy0ef1ZGM2z3SX9VeT4ETDzS44ZrBiEUXIR3MIj6ejOZd1c/cSG+8rkjm2A= > =0aqD > -----END PGP SIGNATURE-----
2004 Jul 20
3
1.0.0-test28 Problem with INDEX
...still being built in the user's home directory. I had it working once - but it seems fragile - almost as if the config parser is sensitive to context??? Sorry - seems vague, but I can't pin this down reliably. Anyone else had problems? Cheers Tim -- Tim J Southerwood Senior Programmer CSG, Dept of Computing, Imperial College, London
2013 Sep 05
1
Windows 7 samba 4 domain join problem
I stood up a samba 4 (4.0.9) Active Directory domain controller on a Red Hat Enterprise Linux 6.3 server, configured in accordance with the Samba AD DC HOWTO <https://wiki.samba.org/index.php/Samba_AD_DC_HOWTO> , and tailored to the domain name I want. I'm trying to join a Windows 7 Enterprise Edition client to the domain. Windows responds with "Your computer could not be joined