search for: therfore

Displaying 20 results from an estimated 70 matches for "therfore".

Did you mean: therefore
2011 May 16
3
Using a sting in variable names
Hi there, I am trying to import 100 files with the names of "vpn 1 .dat" to "vpn 100 .dat" into a respective table calld vpn1 to vpn100. I therfore have created a variable X<-1:100 I not want to use X as a subtitute for the number in my filename, so that I have to write only one function and it does the operation with all files. I have tried every combination i could imagine to include the string X into the file name: vpn'X' , v...
2019 Nov 21
2
Getting "Unable to set XATTR" on libvirt 5.6.0 inside containers
...re getting the following error: ``` Unable to set XATTR trusted.libvirt.security.dac on /var/lib/libvirt/qemu/domain-410-default_vmi-fedora: Operation not permitted') ``` The main problem is for us is that container filesystems don't necessarily support setting xattrs. My questions would therfore be: * Does anyone know what has changed, and why? * Can it be disabled? Thanks a lot and Best Regards, Roman
2004 Mar 09
2
SVM unbalanced classes
Hi! I am using R 1.8.1 and the svm of the e1071 package for classification. The problem is that I have unbalanced classes e.g. the first one is much bigger than the second one and therfore the svm is biased to the first class. If I manually adjust the class size the bias disappears. The question is then how to include this unequal class distribution to the svm (e.g. via wheights or costs)? Yours, Frank -- Frank G. Zoellner AG Angewandte Informatik Technische Fakult"at Universi...
2001 Dec 24
1
File size limitation?
When I run backup and send the output to a file on the server, I get a file limitation of 2g. When I do the same backup to a snap server, there is no problem. Is there a size limitation for a single file? Thanks, Steven C. Henry stevench@xnet.com
2006 Jul 18
2
how to generate calculated db fields
...t; Ideally it seems that Page#slug should generate the slug based on the name every time it is accessed like def slug self.name.gsub /\W+/, ''-'' end but it seems when I save my model to the db Page#slug does not get called and so the slug does not get saved to the db (and therfore remains ''null''). Any ideas? TIA -- Craig Beck http://www.luckybonza.com AIM: kreiggers
2003 Sep 19
2
Latest Samba Disto for Os390/Unix ?
HI,I would be interested if there is a release of Samba for Os390/Unix later that 1.9. (I have tried downloading the 'samba-latest.tar.gz' file from the mirror site,but as I cannot unzip/untar it,due to not having the 'gzip' program !). Therfore I am not sure how compatible it may or may not be with my Os390/Uss platform. Thanks for any help received in advance. John. ______________________________________________________________________ IMPORTANT The information contained in this e-mail and in any attachments is intended onl...
2011 Jul 06
1
[LLVMdev] Error on using DataStructureAnalysis
Hi, though DSA isn't maintained in the current build, I need to use it for analyzing dependencies among functions. Therfore I load the EQTDDataStructures pass and retrieve the mapping from nodes int the callee to the ones in the parent DSGraph with computeNodeMapping. In most cases this works well, but for some function calls I get following error: DSGraph.cpp:1379: static void llvm::DSGraph::computeNodeMapping(const...
2006 Mar 02
1
PostgreSQL function in an insert statement
Hi there, I wont insert a picture in a PostgrSQL-DB via the function lo_import. Therfore I modify the value of an ''oid'' column. @measurepoint = Measurepoint.new(params[:measurepoint]) @measurepoint.measurepoint_background = "lo_import(''#{@params[''measurepoint''][''measurepoint_background'']'')" @measurepoint...
2006 Mar 31
2
evalScript && onComplete
Howdy all, I have an Ajax.Updater with evalScript = true and I would like to execute some javascript *after* the scripts in the answer have been eval''ed. How can I do that ? I''ve tried with onComplete, but onComplete seems to be fired before the inner scripts. Thanks, Nicolas
2011 Jul 07
1
[LLVMdev] Error on using DataStructureAnalysis
...er and adds an element to it. Do you know what's wrong? Best, Andreas On Wed, Jul 6, 2011 at 2:00 AM, Andreas Wilhelm < andreas.wilhelm at gmx.com > wrote: Hi, though DSA isn't maintained in the current build, I need to use it for analyzing dependencies among functions. Therfore I load the EQTDDataStructures pass and retrieve the mapping from nodes int the callee to the ones in the parent DSGraph with computeNodeMapping. In most cases this works well, but for some function calls I get following error: DSGraph.cpp:1379: static void llvm::DSGraph::computeNodeMapping(c...
2013 Dec 02
2
symlink in -R src_dirlist and real dirs on target
Hi folks, I have a bunch of directories to mirror via rsync. I have lots of hardlinked files spread about these directories. Therfore I use -R (--relative) and -H. so far ok but: I create symlinks to the source-directories via script because src-dirs have changing names (date and time of backup) and I want to have constant directory names on target. How can I achieve that? I thought -k (--copy-dirlinks) would work but this rep...
2016 Jan 24
2
Securing tinc config files
I cannot use dynamic dns , the remote sites connect through 4G LTE and get assigned "Private Addresses" that are NATd to a Public Address. The LTE clients can only make connections outward to the Internet and features such as PAT and Dynamic DNS will not work. Therfor for these remote sites I need a Central Server Located on Internet to peer with in order for the Site to Site connection
2008 Apr 08
2
Problem with NA data when computing standard error
...ly(Data[Year=="1999"],na.rm=T,list(Group[Year=="1999"],Season[Year=="1999"]),mean)) object2<-as.data.frame.table(tapply(Data[Year=="1999"],na.rm=T,list(Group[Year=="1999"],Season[Year=="1999"]),se)) Part of the data is labeled as NA, therfore the na.rm=T. I succeed in creating the table for the means, but not for the standard errors. The message is "Error in FUN(X[[1L]], ...) : unused argument(s) (na.rm = TRUE)". Does anyone have an idea how to get the standard error computed? Thx! -- View this message in context: http://w...
2006 Aug 30
2
Yum updates packages for other arch too
Hi, I have the x86_64 arch on my server so therfore i expect that yum updates only x86_64 packages. With the last *yum update* i?ve noticed a strange behaviour while retrieving the needed packeges. As you you see, yum wants install packages for different architectures: glibc x86_64 2.3.4-2.25 base 4.9 M glibc i686...
2012 Apr 23
4
Multiple regex match in the same line
...ppears next to each other with no spaces # in between like "shotshot". "shot shot" or "shot (some text) shot" would fail. puts regex = test_string.grep/shot/ ------------> # From Ruby 1.9 String are not enumerable therfore it would give # a "no method error". I could solve the problem without using regexes but I would like to know how to solve it with regex. I hope I was clear enough in describing the problem. I am new to programming, and ru...
2009 Sep 21
3
(Universal) Ambisonic implementation
e deleflie <edeleflie at gmail.com> ... > ok, I do realise that the extending the maximum channel count may be > difficult ... there's gotta be a way to do it though. Perhaps a comparison of the FLAC structure with that of Vorbis will help. Within a FLAC stream the audio is split into blocks which are grouped (interleaved). But within each block the eight channels are chained
2009 Jan 14
5
How to compute p-Values
Hello. How can I compute the Bootstrap p-Value for a one- and two sided test, when I have a bootstrap sample of a statistic of 1000 for example? My hypothesis are for example: 1. Two-Sided: H0: mean=0 vs. H1: mean!=0 2. One Sided: H0: mean>=0 vs. H1: mean<0 I hope you can help me Thanks in advance Regards, Andreas
2009 Oct 05
1
(Universal) Ambisonic implementation
...-order ambisonic, rather > than just two streams, but makes it easier to drop the higher-order > channels when desired. Agreed. > Allocation of forth and higher order ambison channels into the flac > streams is left open, but higher orders are increasingly difficult > to record and therfore are increasingly rare. Forth and higher level > may be a purely theoretical concern. This also makes sense. Perhaps you should write up an official recommendation! Brian Willoughby Sound Consulting
2006 Dec 22
2
Relating Namespaced Models
I am dealing with a large project. I use a lot of STI and therfore have a lot of models. I''d like to use namespaces to help organize my models but am having trouble getting started. I have a base model Term::Base located in /app/models/term/base.rb: class Term::Base < ActiveRecord::Base set_table_name "terms" end I have a non-namespaced...
2006 Aug 08
1
How to convert list elements to data.frames or vectors?
...# add another set of data (same command) x<-1000 ;y<-1 ;listTable[[length(listTable) + 1]] <- data.frame(matrix(rnorm(x*y), nrow=y)); rm(x); rm(y) My objective is to performed some hypothesis tests on the data. To test if that works out correctly, I tried first using an unpaired t-test (therfore the data.frames consist only of one row each in the example). # alternative, var.equal and conf.level shall # be arguments of my method as well (alternative="two.sided", # var.equal=TRUE, conf.level=0.95) t.test(listTable[[1]][1,], listTable[[2]][1,], alternative=alternative, paired=FALS...