-
Apply a list of parameters to a list of input
Hi, I have a simple question:
I have a list b:(1 5 6;9 10 76; 43 12 11) and I would like to take the nth indexed element from each list where n is a list, for example n = (0;2;1).
So the output should be (1;76;12).
What is the easiest syntax to do it? Thanks.
Log in to reply.