suppose I have two arrays a and b:
a=seq(2013,2015)
b=c('-03-31','-06-30')
I would like to combine each element in a with each in b. The result should be an array which looks like:
"2013-03-31" "2013-06-30" "2014-03-31" "2014-06-30" "2015-03-31" "2015-06-30"
How do I do this?