I need to create the following sequence:
> A
1, 2, 3, 11, 12, 13, 21, 22, 23, 31, 32, 33
> B
-1, 2, -3, 4, -5, 6, -7, 8, -9, 10
I've tried to use seq() function like this:
seq(1:3, 31:33, by = 10)
But it only allows to input 1 number in "from" and "to"
Maybe, someone knows how to use this or other functions to create the given sequence. Thank you in advance.