[Old-Csnd] Easiest way to fill a two-dimentional array? (fwd)
Date | 2015-12-04 16:37 |
From | jpff |
Subject | [Old-Csnd] Easiest way to fill a two-dimentional array? (fwd) |
---------- Forwarded message ---------- Date: Thu, 3 Dec 2015 17:04:16 -0500 From: Beinan Li |
Date | 2015-12-04 16:45 |
From | Martin Crowley |
Subject | Re: [Old-Csnd] Easiest way to fill a two-dimentional array? (fwd) |
Hi folks. I seem to be getting a flood of emails daily from this source. I have turned off email notifications. Can someone please tell me how to un-include my self from every email sent, please and thank you:) Regards Martin On Fri, Dec 4, 2015 at 4:37 PM, jpff <jpff@codemist.co.uk> wrote:
|
Date | 2015-12-04 20:09 |
From | jpff |
Subject | Re: [Old-Csnd] Easiest way to fill a two-dimentional array? (fwd) |
There are a range of options; Take a digest -- approx daily all messages togerher nomail -- no mail sent but you can post and look at archives etc take just index -- a caalog ofmail but no body, so you can retrieve tat wich if interets to you possibly more; look at http://listserv.heanet.ie On Fri, 4 Dec 2015, Martin Crowley wrote: > Hi folks. > I seem to be getting a flood of emails daily from this source. I have turned > off email notifications. Can someone please tell me how to un-include my self > from every email sent, please and thank you:) > > Regards > > Martin > > On Fri, Dec 4, 2015 at 4:37 PM, jpff |
Date | 2015-12-05 09:09 |
From | Victor Lazzarini |
Subject | Re: [Old-Csnd] Easiest way to fill a two-dimentional array? (fwd) |
Joachim Heintz pointed out that there is an undocumented feature of fillarray that allows you to fill a two-dimensional array in row-major order (row1,row1,row3,…). I have not yet checked this, and I am not sure this was intended or it should not be encouraged. I think the opcode author should be able to clarify this. ======================== Dr Victor Lazzarini Dean of Arts, Celtic Studies and Philosophy, Maynooth University, Maynooth, Co Kildare, Ireland Tel: 00 353 7086936 Fax: 00 353 1 7086952 > On 4 Dec 2015, at 16:37, jpff |
Date | 2015-12-06 20:50 |
From | joachim heintz |
Subject | Re: [Old-Csnd] Easiest way to fill a two-dimentional array? (fwd) |
yes example 03E07 in the floss manual still works: iArr[][] init 2,3 iArr fillarray 1,2,3,7,6,5 iRow = 0 until iRow == 2 do iColumn = 0 until iColumn == 3 do prints "iArr[%d][%d] = %d\n", iRow, iColumn, iArr[iRow][iColumn] iColumn += 1 enduntil iRow += 1 od iArr[0][0] = 1 iArr[0][1] = 2 iArr[0][2] = 3 iArr[1][0] = 7 iArr[1][1] = 6 iArr[1][2] = 5 joachim On 05/12/15 10:09, Victor Lazzarini wrote: > Joachim Heintz pointed out that there is an undocumented feature of fillarray that allows you > to fill a two-dimensional array in row-major order (row1,row1,row3,…). I have not yet checked this, > and I am not sure this was intended or it should not be encouraged. I think the opcode author > should be able to clarify this. > ======================== > Dr Victor Lazzarini > Dean of Arts, Celtic Studies and Philosophy, > Maynooth University, > Maynooth, Co Kildare, Ireland > Tel: 00 353 7086936 > Fax: 00 353 1 7086952 > >> On 4 Dec 2015, at 16:37, jpff |