I would like to vectorize the creation of the following vector:
For example-
Let A
be a vector [5 3 2 1]
And let B be a vector [1 2 3 4]
I would like C
to be the vector [1 1 1 1 1 2 2 2 3 3 4]
Meaning- each element i
in B
is duplicated A(i)
times in C
.
I haven't found a way to vectorize the creation of this, any ideas?
Thanks in advance!
Ronen