similar to: read/write problem

Displaying 20 results from an estimated 5000 matches similar to: "read/write problem"

2008 Feb 26
2
Kalman Filter
Hi My name is Vladimir Samaj. I am a student of Univerzity of Zilina. I am trying to implement Kalman Filter into my school work. I have some problems with understanding of R version of Kalman Filter in package stats( functions KalmanLike, KalmanRun, KalmanSmooth,KalmanForecast). 1) Can you tell me how are you seting the initial values of state vector in Kalman Filter? Are you using some method?
2018 Jan 04
2
format integer numbers with leading 0
Dear R-er, I would like format integer number as characters with leading 0 for a fixed width, for example: 1 shoud be "01" 2 shoud be "02" 20 should be "20" Now I use: x <- c(1, 2, 20) gsub(" ", "0", format(x, width=2)) But I suspect more elegant way could be done directly with format options, but I don't find. Thanks a lot Marc
2018 Jan 04
0
format integer numbers with leading 0
Dear R-er, I would like format integer number as characters with leading 0 for a fixed width, for example: 1 shoud be "01" 2 shoud be "02" 20 should be "20" Now I use: x <- c(1, 2, 20) gsub(" ", "0", format(x, width=2)) But I suspect more elegant way could be done directly with format options, but I don't find. Thanks a lot Marc
2010 Dec 27
3
Wine not detecting correctly graphic vendor
Recently i changed my old 6600GT with a less old HD4850, uninstalled the nvidia drivers and install the propietary catalyst last version. All run perfectly, glxinfo shows direct rendering yes and the corresponding bunch of extensions and glxgears rate clear high. But when i try to run any 3D app through wine it fails with for example: $ wine Oblivion.exe fixme:mixer:ALSA_MixerInit No master
2008 Jun 18
0
[LLVMdev] LLVM on OpenBSD
> With 3.3.5 my first test took 5 times to produce a non "bus > error" build. There were no 'make cleans' in between. > > What is going on? You mean you used your bsd-ports-provided gcc to compile LLVM and you've got 4 times a bus-error during the build? In this case, it cannot be a LLVM problem. In the linux-community, people say that bus-error's are
2005 Jul 28
2
How to adjust codec voice detection? Changin RxGain does not help me...
Hi, Problem: When talking to someone (from pstn) and this person is not talking loud, the voice is cut by Asterisk. I tried increase RxGain but it changed nothing (was talking louder but voice still cut.) I use XLite as soft phone. I think this is probably a codec setting... but how do I check that on server side? I just don't know what to do. All works fine (asteriskathome) but I always
2001 Nov 05
2
libao on OS X
OK, wanted to check out the macosx driver for libao on me new iBook. Everything compiles beautifully (given some utils from the fink project, like automake), but... but the dynamic plugin system is broken. 1) on OS X, dll's en in .dylib, not .so, as is hardwired in. this should be an easy fix. 2) dlopen chokes on opening the .dylib files...so the plugin is never loaded. i know not enought
2001 Nov 05
2
libao on OS X
OK, wanted to check out the macosx driver for libao on me new iBook. Everything compiles beautifully (given some utils from the fink project, like automake), but... but the dynamic plugin system is broken. 1) on OS X, dll's en in .dylib, not .so, as is hardwired in. this should be an easy fix. 2) dlopen chokes on opening the .dylib files...so the plugin is never loaded. i know not enought
2008 Nov 28
6
How to delay failed ssh auth
Hi! I need to delay failed ssh password authentication as an additional measure against brute force ssh attacks. I understand, that shoud be accomplished through pam, but googling gave me no example. I have CentOS 5.2. -- Veiko Kukk
2013 Feb 04
2
Version 5.01 not passing kernel command line args to memtest86+as it can understand
Hello, I'm trying to pass the serial port options to memtest86+ using Syslinux 5.01 but is not working. Debugging the memtest86+, the check at main.cpp function static void parse_command_line(void) if (*OLD_CL_MAGIC_ADDR != OLD_CL_MAGIC) return; Is being evaluated to true. What should I do? There is a way to instruct memtest to use the "old way" to pass
2006 Jul 25
2
Cron not sending e-mails anymore
Hi, I have a cronjob that executes a script that has some echo statements in it and the commands in it also generate output (it copies files, reloads services, etc...). Recently, cron stopped sending its output by e-mail. I restarted cron, without success. Any ideas where I shoud start to debug this? Regards, Ugo
2008 Sep 17
2
modifying patterns in a matrix
Dear R-users, I have some very simple data where 1's represent events and zeroes non-events, e.g. temp <- rbind(c(0,1,0,0,1,1,1,0), c(0,0,0,1,0,0,0,0)) For each row in the matrix, I would like to replace a singelton event by a 0. That is, any 1 surrounded by zeroes (010) should be replaced by a zero (000). Sequences of 1's should be left unchanged. So the modified matrix shoud look
2005 Jul 27
3
how to overlook the zero in the denominator
Dear R users: I have two set of data, as follow: x<-c(0,0,0.28,0.55,1.2,2,1.95,1.85, 1.6,0.86,0.78,0.6,0.21,0.18) y<-c(0,0,0,0.53,1.34,1.79,2.07,1.88, 1.52,0.92,0.71,0.55,0.32,0.19) i<-1:length(x) I want to sum each (x[i]-y[i])^2/x[i] together, like: >Sum <-sum((x[i]-y[i])^2/x[i]) >Sum [1] NaN Because the denominator shoud not be zero. So I want to overlook those
2006 Jul 15
1
how to unistall properly?
Hello, I installed Sid Mayer's Locomotion with wine. OK, the game is not running well because my graphic card is not god enought. Now I want to uninstall the game. How can I do that properly? thx Carsten -- IBM Netvista A40, PIII 933MHz i686, Linux Suse 9.3, KDE 3.5.2 level "a", Kernel 2.6.11.4-21.11 default
2013 Apr 25
1
C50 package in R
Hi All, I am trying to use the C50 package to build classification trees in R. Unfortunately there is not enought documentation around its use. Can anyone explain to me - how to prune the decision trees? Regards, Indrajit [[alternative HTML version deleted]]
2005 Aug 26
1
Login and logout auditing
Hi all! Is there a way of logging date/time/workstation/username for every logon and logoff in a samba domain? I realized that it isn't possible to use log level auth for this purpose. I tried to use connections to netlogon service written on the logs. But I realized that those connections are closed before the user logs out. The main idea behind this is to have information enought to
2005 Sep 03
1
american conquest
hi List, I want to play ?American Conquest? under linux with wine. The installer worked fine, but an error comes, when I start the game: VirualAlloc heap reserve failed Not enought memory to run program What can I do? must I edit the wine.config? Any ideas? Thank you very much (If the answer is in german, i's better ;) but in english is ok, too) Greetings from Germay Jonas, 14 male ps:
2010 Sep 01
0
[LLVMdev] how to check whether from basicblock A we can go to basicblock B within the same function?
On Fri, 27 Aug 2010, Guoliang Jin wrote: > > > Every basic block ends with a terminator instruction that indicates > > which basic block or basic blocks it should branch to next. Switch, > > invoke, and branch are all terminator instructions. There may be more > > that I don't remember. > > > Why not just use the predecessor and successor iterator? >
2005 Mar 03
1
Is there a way to find free zap channels on remote servers ??
Hello: I would like to know if there's a way to request free chanels from remote asterisk servers ? My idea is to make an agi returning a dial to inter-asterisk connected servers when there's not enought chanels on local server, maybe like a ping to all of them or maybe requesting to a central server where all the *s send and request information about available chanels each 2 or 3
2007 Sep 24
2
Virtual server Solution
Hello all, I'm looking for a solution to offer Virtual PBX, to my clients. I just saw software with multi-tenant support and I tested it, but no one likes me enought. Finally, I want to offer this service like a kind of hosting. Has you experience with multi-tenant software? Which has you tested? Has anyone experience about "vhost", "vserver", or something similar to run