Re: [Jprogramming] Explicit vs tacit with assignment

2019-11-23 Thread Louis de Forcrand
To follow up on all this, while I am a member of the generation which might write off "lie", I find that correct grammar and spelling are qualities necessary (although certainly not sufficient) for writing clearly and with good style, and in learning the former one inevitably improves on the lat

Re: [Jprogramming] (no subject)

2019-11-23 Thread Louis de Forcrand
I believe that as Devon said the subarray selected by m in x m} y must not contain any fill elements, which isn't the case of your example as in its case the first element of m specifies a length 4 vector while the other two elements specify length 2 vectors. This leads to a 2 by 2 matrix of fil

Re: [Jprogramming] (no subject)

2019-11-23 Thread Devon McCormick
Not sure why but it seems to have to do with length compatibility of the indexes: '='((<0; 0 1 2 3),(<1; 2 3),< 2 4 ; 5)}n |domain error | '='((<0;0 1 2 3),(<1;2 3),<2 4;5)}n but '='((<0; 0 1 2 3),(<1;2 2 2 3),< 2 2 2 4 ; 5)}n OO== O=OO O=OO and (0,

[Jprogramming] (no subject)

2019-11-23 Thread Jimmy Gauvin
Hi, is there any way of making this kind of assignment ? '='((<0; 0 1 2 3),(<1; 2 3),< 2 4 ; 5)}n |domain error | '='((<0;0 1 2 3),(<1;2 3),<2 4;5)}n But this works : '='((<1; 2 3),< 2 4 ; 5)}n OO== O=OO O=OO and so does : ((<0; 0 1 2 3),(<1; 2 3),< 2