Just unbox it.

<"0?3 10$2

┌─┬─┬─┬─┬─┬─┬─┬─┬─┬─┐

│1│1│1│1│1│0│1│0│1│1│

├─┼─┼─┼─┼─┼─┼─┼─┼─┼─┤

│0│0│1│1│1│0│1│1│0│1│

├─┼─┼─┼─┼─┼─┼─┼─┼─┼─┤

│0│0│0│1│1│1│0│0│1│1│

└─┴─┴─┴─┴─┴─┴─┴─┴─┴─┘

tst=:<"0?3 10$2

>tst

1 1 0 0 0 0 1 1 0 0

1 1 1 0 1 1 1 1 0 0

0 0 0 0 0 1 0 1 1 0


On Tue, Apr 10, 2018 at 10:35 AM, Skip Cave <[email protected]> wrote:

> NB.I have an array of boxed boolean values called tst:
> $tst
>
> 132 30
>
> NB. I look at the first three rows of tst:
>
> 3{. tst
>
> ┌─┬─┬─┬─┬─┬─┬─┬─┬─┬─┬─┬─┬─┬─┬─┬─┬─┬─┬─┬─┬─┬─┬─┬─┬─┬─┬─┬─┬─┬─┐
>
> │0│1│1│1│0│1│1│0│0│1│0│1│1│0│1│1│1│1│0│0│0│1│1│0│0│1│1│1│ │ │
>
> ├─┼─┼─┼─┼─┼─┼─┼─┼─┼─┼─┼─┼─┼─┼─┼─┼─┼─┼─┼─┼─┼─┼─┼─┼─┼─┼─┼─┼─┼─┤
>
> │0│1│1│1│0│1│0│1│1│0│0│1│0│1│0│1│1│ │ │ │ │ │ │ │ │ │ │ │ │ │
>
> ├─┼─┼─┼─┼─┼─┼─┼─┼─┼─┼─┼─┼─┼─┼─┼─┼─┼─┼─┼─┼─┼─┼─┼─┼─┼─┼─┼─┼─┼─┤
>
> │0│1│1│0│1│0│1│0│1│0│1│0│1│0│1│0│0│1│0│1│0│1│0│1│0│0│0│1│0│0│
>
> └─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┘
> NB. I want to remove the individual boxing:
>
> f 3{. txt
>
> ┌───────────────────────────────────────────────────────────┐
>
> │0 1 1 1 0 1 1 0 0 1 0 1 1 0 1 1 1 1 0 0 0 1 1 0 0 1 1 1 │
>
> ├───────────────────────────────────────────────────────────┤
>
> │0 1 1 1 0 1 0 1 1 0 0 1 0 1 0 1 1 │
>
> ├───────────────────────────────────────────────────────────┤
>
> │0 1 1 0 1 0 1 0 1 0 1 0 1 0 1 0 0 1 0 1 0 1 0 1 0 0 0 1 0 0│
>
> └───────────────────────────────────────────────────────────┘
>
> NB. How do I construct the unboxing verb 'f'?
>
> Skip
> ----------------------------------------------------------------------
> For information about J forums see http://www.jsoftware.com/forums.htm
----------------------------------------------------------------------
For information about J forums see http://www.jsoftware.com/forums.htm

Reply via email to