x <- 100:120 x[x > 105]
Find the index values of x>109 without any function
Do you mean which(x>109)?
which(x>109)
[1] 11 12 13 14 15 16 17 18 19 20 21