- the *version number of RKWard:  *0.6.1
   - the *version number of R * 3.0.1
   - the *version number of KDE *4.10.5
   - the *operating system *Ubuntu 13.04
   - the *method of installation* used: followed all instructions here (
   
http://sourceforge.net/apps/mediawiki/rkward/index.php?title=Binaries_and_Build_Scripts),
   and all instructions here (
   http://cran.r-project.org/bin/linux/ubuntu/README)
   - *what did you do* to run into the problem? code attached
   - how *can the problem be reproduced*? Every time I run this code, it
   works 2 or 3 times, then chokes.  The only way to prevent the problem is to
   completely clear the workspace in between runs.


code is below:


require(waveslim)

x1 <- seq(1,64)

x <- x1 + rnorm(64,0,1)

w4 <- dwt(x, "d4")

d4 <- c(w4$d1,w4$d2,w4$d3,w4$d4,w4$s4)

w8 <- dwt(x, "d8")

d8 <- c(w8$d1,w8$d2,w8$d3,w8$d4,w8$s4)

w16 <- dwt(x, "d16")

d16 <- c(w16$d1,w16$d2,w16$d3,w16$d4,w16$s4)

d4_2 <- d4

d4_2[which(abs(d4) < 0.001)] <- 0

x2 <- idwt(w4)

w4_2 <- w4

w4_2$d1 <- d4_2[1:32]
w4_2$d2 <- d4_2[33:48]
w4_2$d3 <- d4_2[49:56]
w4_2$d4 <- d4_2[57:60]
w4_2$s4 <- d4_2[61:64]

x4_2 <- idwt(w4_2)







On Mon, Sep 23, 2013 at 12:59 AM, meik michalke <
meik.micha...@uni-duesseldorf.de> wrote:

> Am Sonntag, 22. September 2013, 21:50:49 schrieb Ryan Kappedal:
> > and tell us, what you were trying to do, when this happened.
>
> could you provide us with some more details? please check out these
> suggestions:
>
> http://sourceforge.net/apps/mediawiki/rkward/index.php?title=Contact#Please_read_this_before_contacting_us
>
>
> viele grüße :: m.eik
>
> --
> dipl. psych. meik michalke
> institut f"ur experimentelle psychologie
> abt. f"ur diagnostik und differentielle psychologie
> heinrich-heine-universit"at d-40204 d"usseldorf
------------------------------------------------------------------------------
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from 
the latest Intel processors and coprocessors. See abstracts and register >
http://pubads.g.doubleclick.net/gampad/clk?id=60133471&iu=/4140/ostg.clktrk
_______________________________________________
RKWard-devel mailing list
RKWard-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/rkward-devel

Reply via email to