Intersperse elements of two+ vectors Given two vectors
(one of length i, the other of length j),
intersperse will combine the elements of each
vector into strings of length i X j, where each element
is the concatenation of the elements of the two vectors.
See examples.
Usage
intersperse(...)
Arguments
...
the vectors the user wishes to intersperse
Value
a vector of length i X j, containing the interspersed
vectors as strings