Re: [Jprogramming] Tiling a matrix to produce a larger matrix

2022-07-01 Thread 'Pascal Jasmin' via Programming
there is ,./ 2 8 $ i. 4 4 On Friday, July 1, 2022, 09:33:48 p.m. EDT, Thomas McGuire wrote: I was playing with the Window driver and trying to paint the toucan.bmp to the window I created. Expanding on that I wanted to pain a panel of toucan.bmp bitmaps to the background. Now I was

Re: [Jprogramming] Tiling a matrix to produce a larger matrix

2022-07-01 Thread Elijah Stone
Who needs boxes? :) i.4 4 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 8$"1]8$i.4 4 0 1 2 3 0 1 2 3 4 5 6 7 4 5 6 7 8 9 10 11 8 9 10 11 12 13 14 15 12 13 14 15 0 1 2 3 0 1 2 3 4 5 6 7 4 5 6 7 8 9 10 11 8 9 10 11 12 13 14 15 12 13 14 15 A rank-poly

Re: [Jprogramming] Tiling a matrix to produce a larger matrix

2022-07-01 Thread Raul Miller
On Fri, Jul 1, 2022 at 9:33 PM Thomas McGuire wrote: > I am wondering is there a way to duplicate a seed matrix and give it the form > I want without resorting to boxing. Probably the most general approach to tiling doesn't use boxing at all, but uses indexing. For example: seed=: p:i.3 3

Re: [Jprogramming] Tiling a matrix to produce a larger matrix

2022-07-01 Thread bill lam
I would do it in 2 steps, stitch cells in the same row first. ,/ ,./&:>"1(3 2$ wrote: > I was playing with the Window driver and trying to paint the toucan.bmp to > the window I created. Expanding on that I wanted to pain a panel of > toucan.bmp bitmaps to the background. Now I was able to gl

[Jprogramming] Tiling a matrix to produce a larger matrix

2022-07-01 Thread Thomas McGuire
I was playing with the Window driver and trying to paint the toucan.bmp to the window I created. Expanding on that I wanted to pain a panel of toucan.bmp bitmaps to the background. Now I was able to glom together the bitmaps into a 2 x 2 panel of bitmaps, but it seems I should be able to just s