I have a database composed of two vectors: u=(a,b,c)
and v=(1,2,3)
In another worksheet, I have two blank vectors x
and y
. I need to complete the input of x
(from u
), the code returns the corresponding entry from v
to x
.
For example, if x = (b,c,b)
, then y =(2,3,2)
Thank you!