Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 
avatar of Dominic

Dominic

Dominic has asked 0 questions and find answers to 1 problems.

Stats

11
EtPoint
1
Vote count
0
questions
1
answers

About

a <- rnorm(10) b <- seq(20,1) c <- rep(NA, 10)

j <- 1 for ( i in 1:length(b) ) { if ( b[i]/2 == round(b[i]/2) ) { c[j] <- b[i] + 0.1 j <- j + 1 } else { } }

Dominic questions