search for: system

Displaying 20 results from an estimated 141165 matches for "system".

2008 Aug 18
2
matrix row product and cumulative product
...ix=function(x) + { + y=x[,1] + for(i in 2:dim(x)[2]) + y=y*x[,i] + return(y) + } > cumprod.matrix=function(x) + { + y=matrix(1,nrow=dim(x)[1],ncol=dim(x)[2]) + y[,1]=x[,1] + for (i in 2:dim(x)[2]) + y[,i]=y[,i-1]*x[,i] + return(y) + } > N=10000000 > xmat=matrix(runif(N),ncol=10) > system.time(cumprod.matrix(xmat)) user system elapsed 1.07 0.09 1.15 > system.time(t(apply(xmat,1,cumprod))) user system elapsed 29.27 0.21 29.50 > system.time(prod.matrix(xmat)) user system elapsed 0.29 0.00 0.30 > system.time(apply(xmat,1,prod)) user system elapsed 30.69 0.00 30.72 > xma...
2008 May 14
6
PWGL in wine, problems
...acos and windows, its name is PWGL a free environment for computer assisted composition in openGL. (http://www2.siba.fi/PWGL/) I'm running Ubuntu 8.04 and wine 0.9.59. I have to say that I also installed vcrun2005 and vcrun2005sp1(using winetricks) in order to have Microsoft.VC80.CRT DLL in my system. The program starts, but after the initial stage (showing splash screen), it quits with the following error: X error of failed request: BadAccess (attempt to access private resource denied) Major opcode of failed request: 158(Composite) Minor opcode of failed request: 1 () Serial number of failed...
2002 Mar 26
0
openssh-3.1p1, buildpkg.sh on Solaris 8
Hello. First I would like to thank you for making building the OpenSSH package so easy on Solaris 8. I wish it was so easy with all open source software. For your information, I just build and packaged OpenSSH-3.1p1 on my Ultra 5 workstation with the following packages: system SUNWadmr System & Network Administration Root system SUNWarc Archive Libraries system SUNWbtool CCS tools bundled with SunOS system SUNWcar Core Architecture, (Root) system SUNWcarx Core Architecture, (Root) (64-bit) system SUNWcsd...
2023 Feb 01
1
dyn.load(now = FALSE) not actually lazy?
? Wed, 1 Feb 2023 14:16:54 +1100 Michael Milton <ttmigueltt at gmail.com> ?????: > Is this a bug in the `dyn.load` implementation for R? If not, why is > it behaving like this? What should I do about it? On Unix-like systems, dyn.load forwards its arguments to dlopen(). It should be possible to confirm with a debugger that R passes RTLD_NOW to dlopen() when calling dyn.load(now = TRUE) and RTLD_LAZY when calling dyn.load(now = FALSE). I don't know for sure why the symbols are being resolved despite you asked the...
2011 Nov 18
3
tip: large plots
...'m working with a bunch of large graphs, and stumbled across something useful. Probably many of you know this, but I didn't and so others might benefit. Using pch="." speeds up plotting considerably over using symbols. > x <- runif(1000000) > y <- runif(1000000) > system.time(plot(x, y, pch=".")) user system elapsed 1.042 0.030 1.077 > system.time(plot(x, y)) user system elapsed 37.865 0.033 38.122 If you have enough points, the result is also more legible. Choice of which pch symbol makes a difference too, the default pch=1 being t...
2013 May 26
0
[LLVMdev] The system library is gone for a long time.
>From 1d658dd52ca3973109e370103a7dd3485a4ee11f Mon Sep 17 00:00:00 2001 From: Yonggang Luo <luoyonggang at gmail.com> Date: Mon, 27 May 2013 00:07:16 +0800 Subject: [PATCH] The System library is merged into Support library. --- docs/SystemLibrary.rst | 104 ++++++++++++++++++++++++------------------------- docs/index.rst | 4 +- 2 files changed, 54 insertions(+), 54 deletions(-) diff --git a/docs/SystemLibrary.rst b/docs/SystemLibrary.rst index 0d0f4fa..4c6226c 1006...
2013 May 26
2
[LLVMdev] The system library is gone for a long time.
On 25 May 2013 15:30, Sean Silva <silvas at purdue.edu> wrote: > This will break existing URLs. Until we have a way to set up redirects the > file name should stay the same. Would a SystemLibrary.rst saying it was replaced with the support library be ok? > -- Sean Silva Cheers, Rafael
2013 May 27
3
[LLVMdev] The system library is gone for a long time.
...his patch? 在 2013-5-27 上午12:09,"罗勇刚(Yonggang Luo)" <luoyonggang at gmail.com>写道: > From 1d658dd52ca3973109e370103a7dd3485a4ee11f Mon Sep 17 00:00:00 2001 > From: Yonggang Luo <luoyonggang at gmail.com> > Date: Mon, 27 May 2013 00:07:16 +0800 > Subject: [PATCH] The System library is merged into Support library. > > --- > docs/SystemLibrary.rst | 104 > ++++++++++++++++++++++++------------------------- > docs/index.rst | 4 +- > 2 files changed, 54 insertions(+), 54 deletions(-) > > diff --git a/docs/SystemLibrary.rst b/docs/SystemL...
2013 May 25
4
[LLVMdev] The system library is gone for a long time.
0b5c0c9c868213fee1a8e3b571a96e2e099e8e1e docs/SupportLibrary.rst | 247 ++++++++++++++++++++++++++++++++++++++++++++++++ docs/SystemLibrary.rst | 247 ------------------------------------------------ docs/index.rst | 6 +- 3 files changed, 250 insertions(+), 250 deletions(-) diff --git a/docs/SupportLibrary.rst b/docs/SupportLibrary.rst new file mode 100644 index 0000000..36ab49a --- /dev/null +++ b/docs/SupportLibr...
2003 May 08
1
dcom98, ole32=n and CreateProcess
hi, can't change line wrapping, so am attaching plain text file with message. waiting for answer. TIA -------------- next part -------------- I have no-windows wine system. when installing "dcom98.exe" package into clean system I get such msg-box with an alert: "A newer version of DCOM95 or DCOM98 had been installed. To override, you must uninstall the current version first." below is output I get: [s2@localhost c]$ wine ~/c/dcom98.exe fixme:...
2013 May 26
1
[LLVMdev] The system library is gone for a long time.
OK, I'll resubmit it. 2013/5/26 David Majnemer <david.majnemer at gmail.com>: > This patch has changed "System V IPC" to "Support V IPC". This seems to be an accident caused by some sort of automation. > > Sent from my iPhone > > On May 25, 2013, at 7:27 AM, 罗勇刚(Yonggang Luo) <luoyonggang at gmail.com> wrote: > >> 0b5c0c9c868213fee1a8e3b571a96e2e099e8e1e >> d...
2013 May 26
0
[LLVMdev] The system library is gone for a long time.
This patch has changed "System V IPC" to "Support V IPC". This seems to be an accident caused by some sort of automation. Sent from my iPhone On May 25, 2013, at 7:27 AM, 罗勇刚(Yonggang Luo) <luoyonggang at gmail.com> wrote: > 0b5c0c9c868213fee1a8e3b571a96e2e099e8e1e > docs/SupportLibrary.rst | 247 +...
2008 Nov 29
3
Can't run Evidence Scribe
...s with .NET Whenever I try to run it I receive this: Code: blake at blake-desktop ~ $ env WINEPREFIX="/home/blake/.wine" wine "C:\Program Files\Idoneum\Evidence Scribe\Evidence Scribe.exe" fixme:gdiplus:GdipGetFontHeightGivenDPI Unhandled unit type: 3 Unhandled Exception: System.InvalidOperationException: An error occured while creating the form. See Exception.InnerException for details. The error is: The requested feature is not implemented [GDI+ status: NotImplemented] ---> System.NotImplementedException: The requested feature is not implemented [GDI+ status: NotImple...
2017 Oct 03
0
Revert to R 3.2.x code of logicalSubscript in subscript.c?
...I got the following results with R-3.4.2 (with R_ENABLE_JIT=0, which is slightly faster than using the JIT compiler): R-3.4.2, LARGE VECTORS: > N <- 1e8; R <- 5 > #N <- 1e5; R <- 1000 > > x <- numeric(N) > i <- rep(FALSE, length(x))# no reycling > system.time(for (r in 1:R) a <- x[i]) user system elapsed 0.296 0.000 0.297 > i <- FALSE# recycling > system.time(for (r in 1:R) a <- x[i]) user system elapsed 0.416 0.000 0.418 > > x <- numeric(N) > i <- rep(TRUE, length(x))# no rey...
2012 May 08
6
registry vulnerabilities in R
...f you have any other proprietary statistical software in mind. We can get those certified for the Base ATO. I apologize this may cause interruption in your project. Most proprietary software are safe for NIPRNet use but this one caused some concerns. However, this can be continued for standalone system. Please accept my humble apology. Thanks, Respectfully, Suman Goel 505-846-5357 AFRL/RVIO References 1. mailto:Paul.Martin at kirtland.af.mil 2. mailto:pamartin at alum.mit.edu -------------- next part -------------- Analysis Results from 'added' and 'modified' Re...
2007 Jun 18
3
how to change distro live?
hi, we've got many mandrake 8,9 and 10 system remotely. we'd like to remotely replace these systems to centos 5. we've 4 disk in them. one is the system drive (no need for raid) and there is free space on the remaining 3 disk. so what we think about: - download the new system to the data disks - install grub (mandrake has lilo) to boot...
2005 Nov 27
1
segfault on write.dcf with gzfile connection
...is the desired output length */ usedRalloc = TRUE; b = R_alloc(res + 1, sizeof(char)); And here is an example BAD file, but I'm pretty sure any DCF field with a very long value would trigger it: Description: The package provides and API in R to query BioMart system which produces and maintains automatic annotation on system which produces and maintains automatic annotation on system which produces and maintains automatic annotation on system which produces and maintains automatic annotation on system which produces and maintain...
2009 Jul 09
2
Improvement of [dpq]wilcox functions
...gnificantly improved [dpq]wilcox functions by implementing Harding's algorithm: Harding, E.F. (1984): An Efficient, Minimal-storage Procedure for Calculating the Mann-Whitney U, Generalized U and Similar Distributions, App. Statist., 33, 1-6 Results on my computer show (against R-2.9.1): > system.time( dwilcox( 800, 800, 80) ) user system elapsed 0.240 0.180 0.443 > system.time( dwilcox( (1:2800), 80, 80) ) user system elapsed 0.290 0.020 0.30 > system.time( dwilcox( (1:2800), 160, 160) ) user system elapsed 0.810 0.060 0.868 > system.time( dwilcox( (1...
2006 Aug 31
1
R crashes in Mac OS 10.4 when Find is used (PR#9192)
...300 (Rinit.c:341) 8 org.R-project.R 0x0002aa1c -[REngine runREPL] + 68 (REngine.m:167) 9 org.R-project.R 0x0001d340 main + 680 (main.m:101) 10 org.R-project.R 0x00002e8c _start + 340 (crt.c:272) 11 org.R-project.R 0x00002d34 start + 60 Thread 1: 0 libSystem.B.dylib 0x9000b268 mach_msg_trap + 8 1 libSystem.B.dylib 0x9000b1bc mach_msg + 60 2 com.apple.CoreFoundation 0x907dbb78 __CFRunLoopRun + 832 3 com.apple.CoreFoundation 0x907db47c CFRunLoopRunSpecific + 268 4 com.apple.Foundation 0x92939598 -[NSConnection sendInvocatio...
2004 Jun 05
1
Crash in OSX (PR#6940)
...Version: 10.3.4 (Build 7H63) Report Version: 2 Command: R.bin Path: /Library/Frameworks/R.framework/Resources/bin/R.bin Version: 1.9.0 (R 1.9.0) PID: 358 Thread: 0 Exception: EXC_BAD_ACCESS (0x0001) Codes: KERN_PROTECTION_FAILURE (0x0002) at 0x00000005 Thread 0 Crashed: 0 libSystem.B.dylib 0x90006e70 strlen + 0x50 1 R_aqua.so 0x0048699c HistFwd + 0x134 (aquaconsole.c:3451) 2 R_aqua.so 0x004825c8 KeybHandler + 0xd4 (aquaconsole.c:1370) 3 com.apple.HIToolbox 0x927d2330 DispatchEventToHandlers + 0x150 4 com.apple.HIToolbox 0x927d25a4 SendEventT...