search for: vow

Displaying 20 results from an estimated 46 matches for "vow".

Did you mean: now
2011 Mar 13
1
problem with looping formula through table
...up say for 30+ stocks (DAX-30, FTSE-100 etc.) to eventually have a matrix of coefficients and p-values for each individual stock. First, let's get share prices: library(tseries) sie <- get.hist.quote(instrument="SIE.DE", start="2010-01-01", quote="AdjClose") vow <- get.hist.quote(instrument="VOW.DE", start="2010-01-01", quote="AdjClose") lin <- get.hist.quote(instrument="LIN.DE", start="2010-01-01", quote="AdjClose") dax <- get.hist.quote(instrument="^GDAXI", start="2010-01...
2002 Jun 16
3
lm() function to get coefficients doesn`t work
Hi, to get the residuals and coefficients I did the following: kurse <- read.table("kurse.txt" header=T) the data: index bmw mru rwe vow kar sie bas 1 159,70 74,18 338,21 89,03 110,30 141,23 178,53 67,97 2 160,76 73,46 343,66 89,38 110,30 142,66 180,45 68,30 3 162,45 74,18 349,12 91,54 108,54 146,22 183,12 68,85 4 162,18 72,74 349,12 92,20 106,43 144,80 181,75 68,52 5 161,64 72,98 340,93 91,43 101,87 144,08 181,41 68,30 lm(...
2002 Jun 19
2
solve() doesn`t work
...c(1)]) > y <- kurse$index > t(x) %*% x Error in t(x) %*% x : requires numeric matrix/vector arguments > x <- as.matrix(x) > xtxi <- solve(t(x) %*% x) Error in solve.default(t(x) %*% x) : singular matrix `a' in solve My data looks like this: index bmw mru rwe vow kar sie bas 1 159.70 74.18 338.21 89.03 110.30 141.23 178.53 67.97 2 160.76 73.46 343.66 89.38 110.30 142.66 180.45 68.30 3 162.45 74.18 349.12 91.54 108.54 146.22 183.12 68.85 4 162.18 72.74 349.12 92.20 106.43 144.80 181.75 68.52 5 161.64 72.98 340.93 91.43 101.87 144.08 181.41 68.30...
2013 Jul 30
1
[LLVMdev] Enabling the SLP-vectorizer by default for -O3
Nadav, I ran some benchmarks and I'm seeing 3-6% performance loss on a few of them when we use SLP on both O2 and O3 (with O3 having the biggest differences). Unfortunately, my benchmarking is not scientific, so I can't vow for those numbers, nor I'll have time to investigate it closer in the short term, but I wouldn't be surprised if this is result of extra shuffles we were seeing a few months back on the BB-Vect. This means that we could maybe trim that off (later) by fixing two or three bugs and (fingers cr...
2007 Jul 26
1
Download multiple stock quotes in a loop
...en't been able to do it right. I am trying to download multiple stock quotes in a loop, so that every timeseries is safed with the symbol of the stock. Can anybody help me out? Here's the code: require(tseries) startd <- "2000-06-01" stocks <- c("bmw.de", "vow.de", "dte.de") for(stock in stocks) stock <- as.timeSeries(get.hist.quote(instrument=stock, start=startd, quote="Close", compress="d")) } Thanks in advance, Owe -- Owe Jessen Diplom-Volkswirt Hanssenstra?e 17 24106 Kiel jessen at econinfo.de http://www.eco...
2012 Oct 11
7
kern.maxswzone is gone... what next?
...e is no maxswzone setting for amd64 anymore. When I tried to query this parameter I got: > sysctl kern.maxswzone kern.maxswzone: 0 What was that? Did that mean that 6G is a maximum swap size now? PS: I'm retrying now with kern.maxswzone set to 256M. -- Sphinx of black quartz, judge my vow.
2013 Feb 03
1
Ports and WITH_LIBCPLUSPLUS
Hello, I wanted to try the new c++ stuff, ie clang-3.2, libc++ and libcxxrt, so I used poudriere to build a jail setup for that ( WITH_LIBCPLUSPLUS=yes in src.conf, CXXFLAGS+=-stdlib=libc++ and libsupc++.so.1 libcxxrt.so.1 in libmap.conf ), and started to build my normal set of packages ( see desktop.list ). Please note that I also have WITH_NEW_XORG=yes and WITH_KMS=yes, as well as using the
2017 Oct 24
3
scp setup jailed chroot on Centos7
-----Original Message----- From: CentOS [mailto:centos-bounces at centos.org] On Behalf Of Rainer Duffner Sent: Samstag, 21. Oktober 2017 00:41 To: CentOS mailing list Subject: Re: [CentOS] scp setup jailed chroot on Centos7 > Am 20.10.2017 um 15:58 schrieb Adrian Jenzer <a.jenzer at herzogdemeuron.com>: > > Dear all > > I'm looking for instructions on how to setup a
2012 Jul 24
1
9-STABLE (238719) compilation fails on i386
...er 'KVME_FLAG_GROWS_DOWN' kve->kve_flags & KVME_FLAG_GROWS_DOWN ? "D" : "-"); ^ 2 errors generated. *** [procstat_vm.o] Error code 1 Stop in /usr/src/usr.bin/procstat. -- Sphinx of black quartz judge my vow.
2013 Jul 12
1
stable/9 fails to compile: kmem_alloc_contig bad definition
..._memattr_t memattr); Why boundary is unsigned long and not vm_paddr_t? vm_contig.c: vm_offset_t kmem_alloc_contig(vm_map_t map, vm_size_t size, int flags, vm_paddr_t low, vm_paddr_t high, u_long alignment, vm_paddr_t boundary, vm_memattr_t memattr) -- Sphinx of black quartz judge my vow.
2013 Jul 29
0
[LLVMdev] Enabling the SLP-vectorizer by default for -O3
Cool. Thanks! -Jim On Jul 29, 2013, at 1:07 PM, Renato Golin <renato.golin at linaro.org> wrote: > On 29 July 2013 20:39, Jim Grosbach <grosbach at apple.com> wrote: > These results are really excellent. They’re on Intel, I assume, right? What do the ARM numbers look like? Before enabling by default, we should make sure that the results are comparable there as well. > >
2013 Jul 29
2
[LLVMdev] Enabling the SLP-vectorizer by default for -O3
On 29 July 2013 20:39, Jim Grosbach <grosbach at apple.com> wrote: > These results are really excellent. They’re on Intel, I assume, right? > What do the ARM numbers look like? Before enabling by default, we should > make sure that the results are comparable there as well. > Hi Jim, I'll have a look. --renato -------------- next part -------------- An HTML attachment was
2006 Mar 29
1
setting up lotus notes 7
Hi http://vowe.net/archives/004104.html 1. Install the latest wine from www.winehq.com (or emerge wine, apt-get wine or whatever). 2. Install Notes 6.51 under Windows. 3. Copy the Lotus/Notes directory to ~/.wine/fake_windows/program files/lotus/notes. 4. Copy mfc42.dll and msvcp60.dll from Windows to ~/.wine/fa...
2012 Mar 22
3
Recommendations regarding textbooks
...there any really good companion textbooks / lab manuals to accompany standard texts? Thanks in advance, Richard -- I think back to the halcyon dates of my youth, when indeterminate Hessians had something to do with the Revolutionary War, where conjugate priors were monks who had broken their vows, and the expression (X'X)^-1(X'Y) was greek Those were simpler times
2012 Mar 10
1
Generating abnormal returns in R
...s my first post on this forum and I hope someone can help me out. I have a datafile (weeklyR) with returns of +- 100 companies. I acquired this computing the following code: library("tseries"); tickers = c("GSPC" , "BP" , "TOT" , "ENI.MI" , "VOW.BE" , "CS.PA" , "DAI.DE" , "ALV.DE" , "EOAN.DE" , "CA.PA" , "G.MI" , "DE" , "EXR.MI" , "MUV2.BE" , "UG.PA" , "PRU.L", "VOD.L" , "DPB.BE" , "REP.MC" , &quo...
2017 Oct 24
0
scp setup jailed chroot on Centos7
Am 2017-10-24 12:19, schrieb Adrian Jenzer: > Hi Rainer > I would if I could but external offers only FTP and SCP... > > Regards Adrian AFAIK, for scp you need a proper shell. I've done that exactly once (chrooted ssh) and it was such a pain that I vowed to never do it again. The problem is that inside the chroot, you need: - nameresolution - a minimal passwd/shadow/group file (or ldap) - maybe for scp, you can get away with a rather minimal device-tree - but for actual SSH access, I needed a fairly complete device tree inside the chroo...
2007 Apr 18
0
palm crab no-trump
...more perseverance than<BR>"you know nothing of the matter. that is all to be forgot. perhaps i did not always love him so<BR>brother, but was too angry with lydia to send any message to her.<BR>being in your life."<BR>come and make lizzy marry mr. collins, for she vows she will not have him, and if you do not make<BR>"you are too sensible a girl, lizzy, to fall in love merely because you are warned against it; and,<BR>bitterness of woe. "how can you be smiling so, lizzy?"<BR>
2006 May 18
0
Re: Ruby on Rails Searchable and AnnotatableDocs
> "Today, I want everyone in the room to take a vow never to > say anything like that ever again. Do not tell people, or > tell yourself, or even think that there''s something > inherently wrong with pixel-based fonts. What there''s > something inherently wrong with is Internet Explorer for Windows" Yes, that la...
2004 Feb 03
0
sukper viagrma
...ljs and that was such a GREAT weekend! All the girls at the party were just punch-drunk with my potential I have fhcked all of them THREE times but my dhck WAS able to do some more! Cbalis- it`s COOL!!! The best weekend stuff I've ever trhied! Haven`t you tried yet? DO IT NkOW at http://www.vow-meds.com/sv/index.php?pid=genviag pretended conserve Modula-2 satyr briars irritation caraway provisions fruitful.
2000 Oct 26
3
Happy Birthday portable OpenSSH!
It was one year ago today that I released a patch to get OpenSSH compiling on Linux. I had no idea just how much trouble releasing that patch would get me into :) Within days I was inundated with patches, improvements and portability enhancements - contributions which have made portable OpenSSH the success it is today. So allow me to thank the current developers and all of you who have