Question

I've looked everywhere for a function to do this but given a nested vector

A←(5 3 2) (3 9 1)

I'd like to index it with B

B ← 2 1

So that for the first item in A, the 2nd item will be returned. And for the second item for A will have 3 (the first item) returned.

Était-ce utile?

La solution

You want the index function, applied with the each operator:

      A←(5 3 2) (3 9 1) 
      B←2 1
      B⌷¨A
3 3

Note that you should not confuse the index function with the quad function, which is a wider box.

Autres conseils

You could also use "pick": B⊃¨A

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top