Is there a generic and natural way of turning vectorized default output to numbers in J?
That is... n1=:i. 2 3 4 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 Now I copy and paste the output to make a string s1: s1=: 0 : 0 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 ) Let's suppose there is some verb v that n1-:v s1 v should also work with higher dimensions such as strinfied i.2 3 4 5 ---------------------------------------------------------------------- For information about J forums see http://www.jsoftware.com/forums.htm
