Hi all, I am pretty new to R and even new to programming in general. Right now i get only one value for j below (print(j)), how do i save all j values to one vector or matrix? Sorry for this very basic question. thanks in advance.
wave2 <- abs(Re(rnorm(100))) i <- findInterval((wave2[1]), wave2) i <- i+1 while (i < length(wave2)) { j <- (wave2 [i] - wave2[i-1]) print(j) i<-i+1 } abid ____________________________________________________________________________________ Looking for last minute shopping deals? ______________________________________________ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code.